diff options
Diffstat (limited to 'pthread_detach.c')
-rw-r--r-- | pthread_detach.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/pthread_detach.c b/pthread_detach.c index b110f2b..19bc24d 100644 --- a/pthread_detach.c +++ b/pthread_detach.c @@ -77,8 +77,9 @@ pthread_detach (pthread_t thread) int result; BOOL destroyIt = PTW32_FALSE; ptw32_thread_t * tp = (ptw32_thread_t *) thread.p; + ptw32_mcs_local_node_t node; - EnterCriticalSection (&ptw32_thread_reuse_lock); + ptw32_mcs_lock_acquire(&ptw32_thread_reuse_lock, &node); if (NULL == tp || thread.x != tp->ptHandle.x) @@ -120,7 +121,7 @@ pthread_detach (pthread_t thread) } } - LeaveCriticalSection (&ptw32_thread_reuse_lock); + ptw32_mcs_lock_release(&node); if (result == 0) { |