From ceba61c65d3568e276ab1ec1b6e80e60294a1573 Mon Sep 17 00:00:00 2001 From: Bill Stoddard Date: Thu, 26 Aug 2004 18:35:13 +0000 Subject: [PATCH] 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 --- modules/experimental/mod_cache.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }; -- 2.47.2