From c63a44c724204e8a6a156a81de20314c14791f5f Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Sat, 9 Dec 2006 08:35:37 +0000 Subject: oops, use __pthread_mutex_unlock() not pthread_mutex_unlock() --- libc/misc/pthread/unlock.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'libc/misc') diff --git a/libc/misc/pthread/unlock.c b/libc/misc/pthread/unlock.c index b8adbd813..04de0df58 100644 --- a/libc/misc/pthread/unlock.c +++ b/libc/misc/pthread/unlock.c @@ -18,9 +18,10 @@ Boston, MA 02111-1307, USA. */ #include +#include void attribute_hidden __uclibc_mutex_unlock (void *arg) { pthread_mutex_t *__mutex = (pthread_mutex_t *)arg; - pthread_mutex_unlock(__mutex); + __pthread_mutex_unlock(__mutex); } -- cgit v1.2.3