From 736c68a680d001271c19a2c45fbad5a35579f96c Mon Sep 17 00:00:00 2001 From: Alexey Yakovenko Date: Sun, 28 Feb 2010 21:46:13 +0100 Subject: cover art WIP --- threading_pthread.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'threading_pthread.c') diff --git a/threading_pthread.c b/threading_pthread.c index c3e4e8fb..3b04e7c8 100644 --- a/threading_pthread.c +++ b/threading_pthread.c @@ -58,7 +58,7 @@ thread_join (intptr_t tid) { } uintptr_t -mutex_create (void) { +mutex_create_nonrecursive (void) { pthread_mutex_t *mtx = malloc (sizeof (pthread_mutex_t)); pthread_mutexattr_t attr = {0}; pthread_mutexattr_init (&attr); @@ -73,7 +73,7 @@ mutex_create (void) { } uintptr_t -mutex_create_recursive (void) { +mutex_create (void) { pthread_mutex_t *mtx = malloc (sizeof (pthread_mutex_t)); pthread_mutexattr_t attr = {0}; pthread_mutexattr_init (&attr); -- cgit v1.2.3