You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ch...@apache.org on 2008/12/12 21:35:32 UTC

svn commit: r726114 - /httpd/httpd/trunk/server/mpm/experimental/event/fdqueue.c

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;