From: Bill Stoddard Date: Thu, 26 Aug 2004 18:35:13 +0000 (+0000) Subject: Fix netware compile breakage caused by differences in how atomics are implemented... X-Git-Tag: STRIKER_2_0_51_RC1^2~35 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ceba61c65d3568e276ab1ec1b6e80e60294a1573;p=thirdparty%2Fapache%2Fhttpd.git Fix netware compile breakage caused by differences in how atomics are implemented in 2.0 vs 2.1 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/APACHE_2_0_BRANCH@104830 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/experimental/mod_cache.h b/modules/experimental/mod_cache.h index bfbe2438869..499fa3e1372 100644 --- a/modules/experimental/mod_cache.h +++ b/modules/experimental/mod_cache.h @@ -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; };