]> granicus.if.org Git - apache/commitdiff
fix the type of the idlers field to match what apr_atomic_cas() expects
authorJeff Trawick <trawick@apache.org>
Wed, 15 Jan 2003 13:43:58 +0000 (13:43 +0000)
committerJeff Trawick <trawick@apache.org>
Wed, 15 Jan 2003 13:43:58 +0000 (13:43 +0000)
this fixes the compile when using the native compiler for AIX (and likely
other non-gcc compilers)

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98272 13f79535-47bb-0310-9956-ffa450edef68

server/mpm/worker/fdqueue.c

index ac69db209abb7b8afd25b780e730b099c503070b..0de6cc1f21dbb2b793f25e6d3046c47f1d8cb99d 100644 (file)
@@ -65,7 +65,7 @@ typedef struct recycled_pool {
 } recycled_pool;
 
 struct fd_queue_info_t {
-    int idlers;
+    apr_uint32_t idlers;
     apr_thread_mutex_t *idlers_mutex;
     apr_thread_cond_t *wait_for_idler;
     int terminated;