Return-Path: Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: (qmail 30949 invoked from network); 12 Dec 2008 20:35:53 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 12 Dec 2008 20:35:53 -0000 Received: (qmail 67395 invoked by uid 500); 12 Dec 2008 20:36:05 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 67339 invoked by uid 500); 12 Dec 2008 20:36:05 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 67330 invoked by uid 99); 12 Dec 2008 20:36:05 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 12 Dec 2008 12:36:05 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 12 Dec 2008 20:35:52 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 8C93123888A0; Fri, 12 Dec 2008 12:35:32 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r726114 - /httpd/httpd/trunk/server/mpm/experimental/event/fdqueue.c Date: Fri, 12 Dec 2008 20:35:32 -0000 To: cvs@httpd.apache.org From: chrisd@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20081212203532.8C93123888A0@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: chrisd Date: Fri Dec 12 12:35:32 2008 New Revision: 726114 URL: http://svn.apache.org/viewvc?rev=726114&view=rev Log: Silence compiler warnings in the same manner as for the worker MPM; see r726113. Modified: httpd/httpd/trunk/server/mpm/experimental/event/fdqueue.c Modified: httpd/httpd/trunk/server/mpm/experimental/event/fdqueue.c URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/server/mpm/experimental/event/fdqueue.c?rev=726114&r1=726113&r2=726114&view=diff ============================================================================== --- httpd/httpd/trunk/server/mpm/experimental/event/fdqueue.c (original) +++ httpd/httpd/trunk/server/mpm/experimental/event/fdqueue.c Fri Dec 12 12:35:32 2008 @@ -50,7 +50,7 @@ break; } if (apr_atomic_casptr - ((volatile void **) &(qi->recycled_pools), first_pool->next, + ((void*) &(qi->recycled_pools), first_pool->next, first_pool) == first_pool) { apr_pool_destroy(first_pool->pool); } @@ -209,7 +209,7 @@ struct recycled_pool *next = queue_info->recycled_pools; new_recycle->next = next; if (apr_atomic_casptr - ((volatile void **) &(queue_info->recycled_pools), + ((void*) &(queue_info->recycled_pools), new_recycle, next) == next) { break; } @@ -238,7 +238,7 @@ break; } if (apr_atomic_casptr - ((volatile void **) &(queue_info->recycled_pools), + ((void*) &(queue_info->recycled_pools), first_pool->next, first_pool) == first_pool) { *recycled_pool = first_pool->pool; break;