From 9da8fdcb33373b4b2e1de2a8b7af3ed4b5811245 Mon Sep 17 00:00:00 2001 From: rpj Date: Fri, 8 Oct 2004 12:03:18 +0000 Subject: Mutex speedups --- pthread_mutex_init.c | 4 ---- 1 file changed, 4 deletions(-) (limited to 'pthread_mutex_init.c') diff --git a/pthread_mutex_init.c b/pthread_mutex_init.c index 93504ad..fdb6017 100644 --- a/pthread_mutex_init.c +++ b/pthread_mutex_init.c @@ -92,10 +92,6 @@ pthread_mutex_init (pthread_mutex_t * mutex, const pthread_mutexattr_t * attr) free (mx); mx = NULL; } - else - { - InitializeCriticalSection (&mx->wait_cs); - } } *mutex = mx; -- cgit v1.2.3