From 6a2a30ccc6c3dc803abdbfa35cbfa01062af704b Mon Sep 17 00:00:00 2001 From: "Peter S. Mazinger" Date: Fri, 9 Dec 2005 00:08:31 +0000 Subject: internal sigpause, do we really default to BSD signals? --- libc/sysdeps/linux/common/pause.c | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'libc/sysdeps/linux/common/pause.c') diff --git a/libc/sysdeps/linux/common/pause.c b/libc/sysdeps/linux/common/pause.c index 0587a7b66..a017ef611 100644 --- a/libc/sysdeps/linux/common/pause.c +++ b/libc/sysdeps/linux/common/pause.c @@ -7,22 +7,20 @@ * GNU Library General Public License (LGPL) version 2 or later. */ +#define __sigpause __sigpause_internal +#define sigblock __sigblock + #include "syscalls.h" #include #ifdef __NR_pause - #define __NR___libc_pause __NR_pause _syscall0(int, __libc_pause); -weak_alias(__libc_pause, pause); - #else - #include int __libc_pause(void) { return (__sigpause(sigblock(0), 0)); } -weak_alias(__libc_pause, pause); - #endif +weak_alias(__libc_pause, pause) -- cgit v1.2.3