diff options
author | aaron <aaron@13f79535-47bb-0310-9956-ffa450edef68> | 2002-11-18 01:59:03 +0000 |
---|---|---|
committer | aaron <aaron@13f79535-47bb-0310-9956-ffa450edef68> | 2002-11-18 01:59:03 +0000 |
commit | bf58a0179cd80de8d3c7658682ae9c505c02efbb (patch) | |
tree | d7f82a79ca7937707f1c5cdc60b915f798457947 /include/arch/unix | |
parent | c7cfd3f81399c3f692e242824a04e937a7e3ad53 (diff) | |
download | libapr-bf58a0179cd80de8d3c7658682ae9c505c02efbb.tar.gz |
Rip out buggy nested-mutex code from apr_proc_mutex. This should fix subtle
problems on MP boxes (Linux in particular).
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@64040 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/arch/unix')
-rw-r--r-- | include/arch/unix/proc_mutex.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/include/arch/unix/proc_mutex.h b/include/arch/unix/proc_mutex.h index 580e1e391..09a887570 100644 --- a/include/arch/unix/proc_mutex.h +++ b/include/arch/unix/proc_mutex.h @@ -160,13 +160,6 @@ struct apr_proc_mutex_t { #if APR_HAS_PROC_PTHREAD_SERIALIZE pthread_mutex_t *pthread_interproc; #endif -#if APR_HAS_THREADS - /* APR doesn't have threads, no sense in having a thread lock mechanism. - */ - - apr_os_thread_t owner; - int owner_ref; -#endif }; void apr_proc_mutex_unix_setup_lock(void); |