You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by jf...@apache.org on 2005/11/04 11:21:38 UTC

svn commit: r330780 - /apr/apr-util/trunk/include/apr_memcache.h

Author: jfclere
Date: Fri Nov  4 02:21:35 2005
New Revision: 330780

URL: http://svn.apache.org/viewcvs?rev=330780&view=rev
Log:
apr_thread_mutex_t is only defined if APR_HAS_THREADS.

Modified:
    apr/apr-util/trunk/include/apr_memcache.h

Modified: apr/apr-util/trunk/include/apr_memcache.h
URL: http://svn.apache.org/viewcvs/apr/apr-util/trunk/include/apr_memcache.h?rev=330780&r1=330779&r2=330780&view=diff
==============================================================================
--- apr/apr-util/trunk/include/apr_memcache.h (original)
+++ apr/apr-util/trunk/include/apr_memcache.h Fri Nov  4 02:21:35 2005
@@ -69,7 +69,9 @@
     apr_memcache_conn_t *conn;
 #endif
     apr_pool_t *p; /** Pool to use for private allocations */
+#if APR_HAS_THREADS
     apr_thread_mutex_t *lock;
+#endif
     apr_time_t btime;
 };