From f6fc6973e34a3c250457aed1710ee0872800acdd Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Tue, 23 Dec 2008 10:16:51 +0000 Subject: Get non nptl threads compiled on x86. --- libc/sysdeps/linux/common/__syscall_rt_sigaction.c | 6 +++--- libc/sysdeps/linux/common/creat.c | 16 ---------------- libc/sysdeps/linux/common/open64.c | 2 +- 3 files changed, 4 insertions(+), 20 deletions(-) delete mode 100644 libc/sysdeps/linux/common/creat.c (limited to 'libc/sysdeps/linux/common') diff --git a/libc/sysdeps/linux/common/__syscall_rt_sigaction.c b/libc/sysdeps/linux/common/__syscall_rt_sigaction.c index 6fb416039..c3246b1bf 100644 --- a/libc/sysdeps/linux/common/__syscall_rt_sigaction.c +++ b/libc/sysdeps/linux/common/__syscall_rt_sigaction.c @@ -13,8 +13,8 @@ #include #include -#define __NR___rt_sigaction __NR_rt_sigaction -_syscall4(int, __rt_sigaction, int, signum, - const struct kernel_sigaction *, act, struct kernel_sigaction *, oldact, +#define __NR___syscall_rt_sigaction __NR_rt_sigaction +_syscall4(int, __syscall_rt_sigaction, int, signum, + const struct sigaction *, act, struct sigaction *, oldact, size_t, size) #endif diff --git a/libc/sysdeps/linux/common/creat.c b/libc/sysdeps/linux/common/creat.c deleted file mode 100644 index 429b4824c..000000000 --- a/libc/sysdeps/linux/common/creat.c +++ /dev/null @@ -1,16 +0,0 @@ -/* vi: set sw=4 ts=4: */ -/* - * open() for uClibc - * - * Copyright (C) 2000-2006 Erik Andersen - * - * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. - */ -#include - -extern int __libc_open(const char *file, int flags, ...); - -int creat(const char *file, mode_t mode) -{ - return __libc_open(file, O_WRONLY | O_CREAT | O_TRUNC, mode); -} diff --git a/libc/sysdeps/linux/common/open64.c b/libc/sysdeps/linux/common/open64.c index 7a68b4cd9..403e91a46 100644 --- a/libc/sysdeps/linux/common/open64.c +++ b/libc/sysdeps/linux/common/open64.c @@ -44,7 +44,7 @@ int open64 (const char *file, int oflag, ...) return result; #else - return __libc_open(file, oflag | O_LARGEFILE, mode); + return open(file, oflag | O_LARGEFILE, mode); #endif } libc_hidden_def(open64) -- cgit v1.2.3