summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjorton <jorton@13f79535-47bb-0310-9956-ffa450edef68>2004-06-05 11:52:43 +0000
committerjorton <jorton@13f79535-47bb-0310-9956-ffa450edef68>2004-06-05 11:52:43 +0000
commit9e7690dbebfd96fa883b83c8c0998956a2f9d8e7 (patch)
tree01f53e8ebb8ed378fc19532c50bffa708f93c83e
parent12acf89c70415dcd427819403b7a30483d833e6c (diff)
downloadlibapr-9e7690dbebfd96fa883b83c8c0998956a2f9d8e7.tar.gz
* configure.in, include/arch/unix/apr_arch_proc_mutex.h,
include/apr.h.in: Remove unimplemented "rwlock" serialization definitions. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@65164 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--configure.in2
-rw-r--r--include/apr.h.in1
-rw-r--r--include/arch/unix/apr_arch_proc_mutex.h4
3 files changed, 0 insertions, 7 deletions
diff --git a/configure.in b/configure.in
index a7161dd6e..ddead0505 100644
--- a/configure.in
+++ b/configure.in
@@ -1594,7 +1594,6 @@ APR_IFALLYES(header:pthread.h define:PTHREAD_PROCESS_SHARED dnl
func:pthread_mutexattr_setpshared dnl
file:/dev/zero,
hasprocpthreadser="1", hasprocpthreadser="0")
-APR_IFALLYES(struct:pthread_rw, hasrwlockser="1", hasrwlockser="0")
# See which lock mechanism we'll select by default on this system.
# The last APR_DECIDE to execute sets the default.
@@ -1650,7 +1649,6 @@ AC_SUBST(hassysvser)
AC_SUBST(hasposixser)
AC_SUBST(hasfcntlser)
AC_SUBST(hasprocpthreadser)
-AC_SUBST(hasrwlockser)
AC_SUBST(flockser)
AC_SUBST(sysvser)
AC_SUBST(posixser)
diff --git a/include/apr.h.in b/include/apr.h.in
index f8331fbd6..858037b48 100644
--- a/include/apr.h.in
+++ b/include/apr.h.in
@@ -178,7 +178,6 @@ extern "C" {
#define APR_HAS_POSIXSEM_SERIALIZE @hasposixser@
#define APR_HAS_FCNTL_SERIALIZE @hasfcntlser@
#define APR_HAS_PROC_PTHREAD_SERIALIZE @hasprocpthreadser@
-#define APR_HAS_RWLOCK_SERIALIZE @hasrwlockser@
#define APR_PROCESS_LOCK_IS_GLOBAL @proclockglobal@
diff --git a/include/arch/unix/apr_arch_proc_mutex.h b/include/arch/unix/apr_arch_proc_mutex.h
index 4c7cd4e31..7da97b7a8 100644
--- a/include/arch/unix/apr_arch_proc_mutex.h
+++ b/include/arch/unix/apr_arch_proc_mutex.h
@@ -96,10 +96,6 @@ extern const apr_proc_mutex_unix_lock_methods_t apr_proc_mutex_unix_flock_method
#if APR_HAS_PROC_PTHREAD_SERIALIZE
extern const apr_proc_mutex_unix_lock_methods_t apr_proc_mutex_unix_proc_pthread_methods;
#endif
-#if APR_HAS_RWLOCK_SERIALIZE
-extern const apr_proc_mutex_unix_lock_methods_t apr_proc_mutex_unix_rwlock_methods;
-#endif
-
#if !APR_HAVE_UNION_SEMUN && defined(APR_HAS_SYSVSEM_SERIALIZE)
union semun {