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_cond_destroy.c | |
parent | eb28d5aa00690b67cc27e4bd93d2c4c251987c85 (diff) |
Replace global Critical Sections with MCS Queue locks
Diffstat (limited to 'pthread_cond_destroy.c')
-rw-r--r-- | pthread_cond_destroy.c | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/pthread_cond_destroy.c b/pthread_cond_destroy.c index 53f7a53..40d4a08 100644 --- a/pthread_cond_destroy.c +++ b/pthread_cond_destroy.c @@ -126,7 +126,8 @@ pthread_cond_destroy (pthread_cond_t * cond) if (*cond != PTHREAD_COND_INITIALIZER) { - EnterCriticalSection (&ptw32_cond_list_lock); + ptw32_mcs_local_node_t node; + ptw32_mcs_lock_acquire(&ptw32_cond_list_lock, &node); cv = *cond; @@ -154,7 +155,7 @@ pthread_cond_destroy (pthread_cond_t * cond) if (result != 0) { - LeaveCriticalSection (&ptw32_cond_list_lock); + ptw32_mcs_lock_release(&node); return result; } @@ -213,14 +214,15 @@ pthread_cond_destroy (pthread_cond_t * cond) (void) free (cv); } - LeaveCriticalSection (&ptw32_cond_list_lock); + ptw32_mcs_lock_release(&node); } else { + ptw32_mcs_local_node_t node; /* * See notes in ptw32_cond_check_need_init() above also. */ - EnterCriticalSection (&ptw32_cond_test_init_lock); + ptw32_mcs_lock_acquire(&ptw32_cond_test_init_lock, &node); /* * Check again. @@ -244,7 +246,7 @@ pthread_cond_destroy (pthread_cond_t * cond) result = EBUSY; } - LeaveCriticalSection (&ptw32_cond_test_init_lock); + ptw32_mcs_lock_release(&node); } return ((result != 0) ? result : ((result1 != 0) ? result1 : result2)); |