From 6e3ac5c605d5062279178b3ea0b853d0e9cf7cc9 Mon Sep 17 00:00:00 2001 From: rpj Date: Thu, 10 Mar 2011 13:40:16 +0000 Subject: Replace global Critical Sections with MCS Queue locks --- pthread_kill.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'pthread_kill.c') diff --git a/pthread_kill.c b/pthread_kill.c index d360187..21939d8 100644 --- a/pthread_kill.c +++ b/pthread_kill.c @@ -77,8 +77,9 @@ pthread_kill (pthread_t thread, int sig) { int result = 0; ptw32_thread_t * tp; + ptw32_mcs_local_node_t node; - EnterCriticalSection (&ptw32_thread_reuse_lock); + ptw32_mcs_lock_acquire(&ptw32_thread_reuse_lock, &node); tp = (ptw32_thread_t *) thread.p; @@ -89,7 +90,7 @@ pthread_kill (pthread_t thread, int sig) result = ESRCH; } - LeaveCriticalSection (&ptw32_thread_reuse_lock); + ptw32_mcs_lock_release(&node); if (0 == result && 0 != sig) { -- cgit v1.2.3