From 733810682b180134caf823d95a7820c7efe6e9d8 Mon Sep 17 00:00:00 2001 From: "Peter S. Mazinger" Date: Thu, 21 Apr 2011 23:10:35 +0200 Subject: ioctl.c: use cancel.h Guard changed from NPTL to __NEW_THREADS to cover LT new as well. Signed-off-by: Peter S. Mazinger Signed-off-by: Bernhard Reutner-Fischer --- libc/sysdeps/linux/common/ioctl.c | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) (limited to 'libc/sysdeps/linux/common/ioctl.c') diff --git a/libc/sysdeps/linux/common/ioctl.c b/libc/sysdeps/linux/common/ioctl.c index f2f0f539a..9a00e614a 100644 --- a/libc/sysdeps/linux/common/ioctl.c +++ b/libc/sysdeps/linux/common/ioctl.c @@ -10,14 +10,7 @@ #include #include #include - -#ifdef __UCLIBC_HAS_THREADS_NATIVE__ -#include -#else -#define SINGLE_THREAD_P 1 -#endif - -libc_hidden_proto(ioctl) +#include #define __NR___syscall_ioctl __NR_ioctl static __always_inline @@ -30,17 +23,16 @@ int ioctl(int fd, unsigned long int request, ...) va_start(list, request); arg = va_arg(list, void *); - va_end(list); if (SINGLE_THREAD_P) return __syscall_ioctl(fd, request, arg); - -#ifdef __UCLIBC_HAS_THREADS_NATIVE__ +#ifdef __NEW_THREADS int oldtype = LIBC_CANCEL_ASYNC (); int result = __syscall_ioctl(fd, request, arg); LIBC_CANCEL_RESET (oldtype); return result; #endif } -libc_hidden_def(ioctl) +lt_strong_alias(ioctl) +lt_libc_hidden(ioctl) -- cgit v1.2.3