diff options
author | Eric Andersen <andersen@codepoet.org> | 2006-12-09 08:35:37 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2006-12-09 08:35:37 +0000 |
commit | c63a44c724204e8a6a156a81de20314c14791f5f (patch) | |
tree | 2a76fda239575238e95683933b093afbcfb04ed2 /libc/misc/pthread/unlock.c | |
parent | c36fe58f4440370fd444419edd3a3497978c4424 (diff) |
oops, use __pthread_mutex_unlock() not pthread_mutex_unlock()
Diffstat (limited to 'libc/misc/pthread/unlock.c')
-rw-r--r-- | libc/misc/pthread/unlock.c | 3 |
1 files changed, 2 insertions, 1 deletions
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 <pthread.h> +#include <bits/uClibc_mutex.h> void attribute_hidden __uclibc_mutex_unlock (void *arg) { pthread_mutex_t *__mutex = (pthread_mutex_t *)arg; - pthread_mutex_unlock(__mutex); + __pthread_mutex_unlock(__mutex); } |