diff options
author | wrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68> | 2005-07-22 21:48:35 +0000 |
---|---|---|
committer | wrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68> | 2005-07-22 21:48:35 +0000 |
commit | 14073a6fe3cf053b3b526bdbf55ad307cf44cc95 (patch) | |
tree | cd3eb8055e59fcef097f4a0454aa3ee8e8f2c615 /include/arch/win32 | |
parent | 11bf26920aa748d26a36232499e1bc58a824472c (diff) | |
download | libapr-14073a6fe3cf053b3b526bdbf55ad307cf44cc95.tar.gz |
Refactor Win32 condition variables code to address bugs.
PR: 27654, 34336
Submitted by: Henry Jen <henryjen ztune.net> and E Holyat <eholyat yahoo.com>
Reviewed by: wrowe, stoddard
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@224407 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/arch/win32')
-rw-r--r-- | include/arch/win32/apr_arch_thread_cond.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/arch/win32/apr_arch_thread_cond.h b/include/arch/win32/apr_arch_thread_cond.h index 5520ef26b..01252328a 100644 --- a/include/arch/win32/apr_arch_thread_cond.h +++ b/include/arch/win32/apr_arch_thread_cond.h @@ -22,7 +22,6 @@ struct apr_thread_cond_t { apr_pool_t *pool; HANDLE event; - HANDLE mutex; int signal_all; int num_waiting; int signalled; |