]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Fix netware compile breakage caused by differences in how atomics are implemented...
authorBill Stoddard <stoddard@apache.org>
Thu, 26 Aug 2004 18:35:13 +0000 (18:35 +0000)
committerBill Stoddard <stoddard@apache.org>
Thu, 26 Aug 2004 18:35:13 +0000 (18:35 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/APACHE_2_0_BRANCH@104830 13f79535-47bb-0310-9956-ffa450edef68

modules/experimental/mod_cache.h

index bfbe24388696b832ebf9fb7fec5adba6214c9be9..499fa3e1372c2613f11a2d8e652b6a18be8d72d2 100644 (file)
@@ -172,7 +172,7 @@ struct cache_object {
     void *vobj;         /* Opaque portion (specific to the cache implementation) of the cache object */
     apr_size_t count;   /* Number of body bytes written to the cache so far */
     int complete;
-    apr_uint32_t refcount;
+    apr_atomic_t refcount;
     apr_size_t cleanup;
 };