summaryrefslogtreecommitdiffstats
path: root/libc/stdio/_stdio.h
diff options
context:
space:
mode:
authorKhem Raj <kraj@mvista.com>2008-07-09 23:52:41 +0000
committerKhem Raj <kraj@mvista.com>2008-07-09 23:52:41 +0000
commitc776700c71250f0666f5f23ba198f6c3d03974c6 (patch)
treeedf45e8c27e0704a51e22be1f37f06e2e0a3e09e /libc/stdio/_stdio.h
parent8881017aeb43889e5eba0bd29e7bd484b715f56b (diff)
downloaduClibc-alpine-c776700c71250f0666f5f23ba198f6c3d03974c6.tar.bz2
uClibc-alpine-c776700c71250f0666f5f23ba198f6c3d03974c6.tar.xz
Fix the builds without STDIO_FUTEXES. Fix msgecv and msgsend to compile on ARM as well.
Diffstat (limited to 'libc/stdio/_stdio.h')
-rw-r--r--libc/stdio/_stdio.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/libc/stdio/_stdio.h b/libc/stdio/_stdio.h
index e8ef08983..27075a8ac 100644
--- a/libc/stdio/_stdio.h
+++ b/libc/stdio/_stdio.h
@@ -24,18 +24,18 @@
#include <bits/uClibc_mutex.h>
#define __STDIO_THREADLOCK_OPENLIST_ADD \
- __UCLIBC_IO_MUTEX_LOCK(_stdio_openlist_add_lock)
+ __UCLIBC_MUTEX_LOCK(_stdio_openlist_add_lock)
#define __STDIO_THREADUNLOCK_OPENLIST_ADD \
- __UCLIBC_IO_MUTEX_UNLOCK(_stdio_openlist_add_lock)
+ __UCLIBC_MUTEX_UNLOCK(_stdio_openlist_add_lock)
#ifdef __STDIO_BUFFERS
#define __STDIO_THREADLOCK_OPENLIST_DEL \
- __UCLIBC_IO_MUTEX_LOCK(_stdio_openlist_del_lock)
+ __UCLIBC_MUTEX_LOCK(_stdio_openlist_del_lock)
#define __STDIO_THREADUNLOCK_OPENLIST_DEL \
- __UCLIBC_IO_MUTEX_UNLOCK(_stdio_openlist_del_lock)
+ __UCLIBC_MUTEX_UNLOCK(_stdio_openlist_del_lock)
#ifdef __UCLIBC_HAS_THREADS__