summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/common/pause.c
diff options
context:
space:
mode:
authorPeter S. Mazinger <ps.m@gmx.net>2005-12-09 00:08:31 +0000
committerPeter S. Mazinger <ps.m@gmx.net>2005-12-09 00:08:31 +0000
commit6a2a30ccc6c3dc803abdbfa35cbfa01062af704b (patch)
treef617a70aae3007e35d1c47a6815e118f08be1592 /libc/sysdeps/linux/common/pause.c
parentafa6ffdbf8a2e31d648c8860fd172d1b047650cd (diff)
internal sigpause, do we really default to BSD signals?
Diffstat (limited to 'libc/sysdeps/linux/common/pause.c')
-rw-r--r--libc/sysdeps/linux/common/pause.c10
1 files changed, 4 insertions, 6 deletions
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 <unistd.h>
#ifdef __NR_pause
-
#define __NR___libc_pause __NR_pause
_syscall0(int, __libc_pause);
-weak_alias(__libc_pause, pause);
-
#else
-
#include <signal.h>
int __libc_pause(void)
{
return (__sigpause(sigblock(0), 0));
}
-weak_alias(__libc_pause, pause);
-
#endif
+weak_alias(__libc_pause, pause)