summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2005-07-22 21:51:21 +0000
committerwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2005-07-22 21:51:21 +0000
commit111e6cab5714b8f35539e31abeb496524711cb02 (patch)
treeccb10cc4d8f1e3ebc0812db3e986d73aff213739
parent44c3b28bdcbc02e6172792c7cbc5e9efb7b20bcc (diff)
downloadlibapr-111e6cab5714b8f35539e31abeb496524711cb02.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 Backport: 224407 git-svn-id: http://svn.apache.org/repos/asf/apr/apr/branches/0.9.x@224408 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--CHANGES3
-rw-r--r--include/arch/win32/apr_arch_thread_cond.h1
-rw-r--r--locks/win32/thread_cond.c83
3 files changed, 22 insertions, 65 deletions
diff --git a/CHANGES b/CHANGES
index f34f58947..0536c09dc 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,5 +1,8 @@
Changes with APR 0.9.7
+ *) Refactor Win32 condition variables code to address bugs 27654, 34336.
+ [Henry Jen <henryjen ztune.net>, E Holyat <eholyat yahoo.com>]
+
*) Support APR_SO_SNDBUF and APR_SO_RCVBUF on Windows. PR 32177.
[Sim <sgobbi datamanagement.it>, Jeff Trawick]
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;
diff --git a/locks/win32/thread_cond.c b/locks/win32/thread_cond.c
index dca1e8fb6..483f3300e 100644
--- a/locks/win32/thread_cond.c
+++ b/locks/win32/thread_cond.c
@@ -25,7 +25,6 @@
static apr_status_t thread_cond_cleanup(void *data)
{
apr_thread_cond_t *cond = data;
- CloseHandle(cond->mutex);
CloseHandle(cond->event);
return APR_SUCCESS;
}
@@ -36,95 +35,61 @@ APR_DECLARE(apr_status_t) apr_thread_cond_create(apr_thread_cond_t **cond,
*cond = apr_palloc(pool, sizeof(**cond));
(*cond)->pool = pool;
(*cond)->event = CreateEvent(NULL, TRUE, FALSE, NULL);
- (*cond)->mutex = CreateMutex(NULL, FALSE, NULL);
(*cond)->signal_all = 0;
(*cond)->num_waiting = 0;
return APR_SUCCESS;
}
-APR_DECLARE(apr_status_t) apr_thread_cond_wait(apr_thread_cond_t *cond,
- apr_thread_mutex_t *mutex)
+static APR_INLINE apr_status_t _thread_cond_timedwait(apr_thread_cond_t *cond,
+ apr_thread_mutex_t *mutex,
+ DWORD timeout_ms )
{
DWORD res;
while (1) {
- res = WaitForSingleObject(cond->mutex, INFINITE);
- if (res != WAIT_OBJECT_0) {
- return apr_get_os_error();
- }
cond->num_waiting++;
- ReleaseMutex(cond->mutex);
apr_thread_mutex_unlock(mutex);
- res = WaitForSingleObject(cond->event, INFINITE);
+ res = WaitForSingleObject(cond->event, timeout_ms);
+ apr_thread_mutex_lock(mutex);
cond->num_waiting--;
if (res != WAIT_OBJECT_0) {
apr_status_t rv = apr_get_os_error();
- ReleaseMutex(cond->mutex);
- return rv;
+ if (res == WAIT_TIMEOUT) {
+ return APR_TIMEUP;
+ }
+ return apr_get_os_error();
}
if (cond->signal_all) {
if (cond->num_waiting == 0) {
+ cond->signal_all = 0;
+ cond->signalled = 0;
ResetEvent(cond->event);
}
break;
}
- if (cond->signalled) {
+ else if (cond->signalled) {
cond->signalled = 0;
ResetEvent(cond->event);
break;
}
- ReleaseMutex(cond->mutex);
}
- apr_thread_mutex_lock(mutex);
return APR_SUCCESS;
}
+APR_DECLARE(apr_status_t) apr_thread_cond_wait(apr_thread_cond_t *cond,
+ apr_thread_mutex_t *mutex)
+{
+ return _thread_cond_timedwait(cond, mutex, INFINITE);
+}
+
APR_DECLARE(apr_status_t) apr_thread_cond_timedwait(apr_thread_cond_t *cond,
apr_thread_mutex_t *mutex,
apr_interval_time_t timeout)
{
- DWORD res;
DWORD timeout_ms = (DWORD) apr_time_as_msec(timeout);
- while (1) {
- res = WaitForSingleObject(cond->mutex, timeout_ms);
- if (res != WAIT_OBJECT_0) {
- if (res == WAIT_TIMEOUT) {
- return APR_TIMEUP;
- }
- return apr_get_os_error();
- }
- cond->num_waiting++;
- ReleaseMutex(cond->mutex);
-
- apr_thread_mutex_unlock(mutex);
- res = WaitForSingleObject(cond->event, timeout_ms);
- cond->num_waiting--;
- if (res != WAIT_OBJECT_0) {
- apr_status_t rv = apr_get_os_error();
- ReleaseMutex(cond->mutex);
- apr_thread_mutex_lock(mutex);
- if (res == WAIT_TIMEOUT) {
- return APR_TIMEUP;
- }
- return apr_get_os_error();
- }
- if (cond->signal_all) {
- if (cond->num_waiting == 0) {
- ResetEvent(cond->event);
- }
- break;
- }
- if (cond->signalled) {
- cond->signalled = 0;
- ResetEvent(cond->event);
- break;
- }
- ReleaseMutex(cond->mutex);
- }
- apr_thread_mutex_lock(mutex);
- return APR_SUCCESS;
+ return _thread_cond_timedwait(cond, mutex, timeout_ms);
}
APR_DECLARE(apr_status_t) apr_thread_cond_signal(apr_thread_cond_t *cond)
@@ -132,16 +97,11 @@ APR_DECLARE(apr_status_t) apr_thread_cond_signal(apr_thread_cond_t *cond)
apr_status_t rv = APR_SUCCESS;
DWORD res;
- res = WaitForSingleObject(cond->mutex, INFINITE);
- if (res != WAIT_OBJECT_0) {
- return apr_get_os_error();
- }
cond->signalled = 1;
res = SetEvent(cond->event);
if (res == 0) {
rv = apr_get_os_error();
}
- ReleaseMutex(cond->mutex);
return rv;
}
@@ -150,17 +110,12 @@ APR_DECLARE(apr_status_t) apr_thread_cond_broadcast(apr_thread_cond_t *cond)
apr_status_t rv = APR_SUCCESS;
DWORD res;
- res = WaitForSingleObject(cond->mutex, INFINITE);
- if (res != WAIT_OBJECT_0) {
- return apr_get_os_error();
- }
cond->signalled = 1;
cond->signal_all = 1;
res = SetEvent(cond->event);
if (res == 0) {
rv = apr_get_os_error();
}
- ReleaseMutex(cond->mutex);
return rv;
}