From b31aeb23b86dcf4a824b8dbc3204987f37015394 Mon Sep 17 00:00:00 2001 From: Jeff Trawick Date: Wed, 15 Jan 2003 13:43:58 +0000 Subject: [PATCH] fix the type of the idlers field to match what apr_atomic_cas() expects 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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/mpm/worker/fdqueue.c b/server/mpm/worker/fdqueue.c index ac69db209a..0de6cc1f21 100644 --- a/server/mpm/worker/fdqueue.c +++ b/server/mpm/worker/fdqueue.c @@ -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; -- 2.40.0