]> granicus.if.org Git - apache/commitdiff
Merge r1753777 from trunk:
authorJim Jagielski <jim@apache.org>
Wed, 3 Aug 2016 11:44:41 +0000 (11:44 +0000)
committerJim Jagielski <jim@apache.org>
Wed, 3 Aug 2016 11:44:41 +0000 (11:44 +0000)
Permit mod_proxy_hcheck.c to compile on Win32 32-bit architectures.
This decoration is required for all apr_thread fn() entry points,
at least on some platforms.

Submitted by: wrowe
Reviewed/backported by: jim

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1755072 13f79535-47bb-0310-9956-ffa450edef68

STATUS
modules/proxy/mod_proxy_hcheck.c

diff --git a/STATUS b/STATUS
index ce0657e16ddfa787b24091ee3c80099728e96605..41fc3b8ecfd6376f09df205b710abe443f5fb204 100644 (file)
--- a/STATUS
+++ b/STATUS
@@ -124,10 +124,6 @@ RELEASE SHOWSTOPPERS:
 PATCHES ACCEPTED TO BACKPORT FROM TRUNK:
   [ start all new proposals below, under PATCHES PROPOSED. ]
 
-  *) mod_proxy_hcheck: fix thread_fn entry point for win32 32-bit
-     trunk patch: http://svn.apache.org/r1753777
-     2.4.x patch: trunk works
-     +1: wrowe, covener, jchampion
 
 PATCHES PROPOSED TO BACKPORT FROM TRUNK:
   [ New proposals should be added at the end of the list ]
index 6606652e39299bf87f75c6f0fabce27b0d601bce..0143fd45a5e59838838b264a7ac3497aeca79592 100644 (file)
@@ -775,7 +775,7 @@ static apr_status_t hc_check_http(sctx_t *ctx, apr_pool_t *ptemp, proxy_worker *
     return backend_cleanup("HCOH", backend, ctx->s, status);
 }
 
-static void *hc_check(apr_thread_t *thread, void *b)
+static void * APR_THREAD_FUNC hc_check(apr_thread_t *thread, void *b)
 {
     baton_t *baton = (baton_t *)b;
     sctx_t *ctx = baton->ctx;