diff options
| author | rpj <rpj> | 2011-03-10 13:40:16 +0000 | 
|---|---|---|
| committer | rpj <rpj> | 2011-03-10 13:40:16 +0000 | 
| commit | 6e3ac5c605d5062279178b3ea0b853d0e9cf7cc9 (patch) | |
| tree | d9262f28ef4083dfeefbd31bc9b163cf67e102e1 /pthread_join.c | |
| parent | eb28d5aa00690b67cc27e4bd93d2c4c251987c85 (diff) | |
Replace global Critical Sections with MCS Queue locks
Diffstat (limited to 'pthread_join.c')
| -rw-r--r-- | pthread_join.c | 5 | 
1 files changed, 3 insertions, 2 deletions
| diff --git a/pthread_join.c b/pthread_join.c index 72a3a74..c49484d 100644 --- a/pthread_join.c +++ b/pthread_join.c @@ -85,8 +85,9 @@ pthread_join (pthread_t thread, void **value_ptr)    int result;    pthread_t self;    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) @@ -102,7 +103,7 @@ pthread_join (pthread_t thread, void **value_ptr)        result = 0;      } -  LeaveCriticalSection (&ptw32_thread_reuse_lock); +  ptw32_mcs_lock_release(&node);    if (result == 0)      { | 
