diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2009-02-25 11:06:29 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2009-02-25 11:06:29 +0000 |
commit | 147041d26029fabdb35b596a1d3bcbb40c3de975 (patch) | |
tree | dcd8320bbf30440ee47fe47130cbd1500ced80bd /libc/sysdeps/linux/common/pause.c | |
parent | bdf8a6c4b863184545a15f63b9e28bd81e942859 (diff) |
Reinstate __libc_foo's needed for linuxthreads.old.
Now they are only enabled if linuxthreads.old are selected.
Diffstat (limited to 'libc/sysdeps/linux/common/pause.c')
-rw-r--r-- | libc/sysdeps/linux/common/pause.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/libc/sysdeps/linux/common/pause.c b/libc/sysdeps/linux/common/pause.c index 7f2ca57a5..30963d623 100644 --- a/libc/sysdeps/linux/common/pause.c +++ b/libc/sysdeps/linux/common/pause.c @@ -10,17 +10,18 @@ #define __UCLIBC_HIDE_DEPRECATED__ #include <sys/syscall.h> #include <unistd.h> +#include <signal.h> -#ifdef __NR_pause +#ifdef __LINUXTHREADS_OLD__ +extern __typeof(pause) weak_function pause; +strong_alias(pause,__libc_pause) +#endif +#ifdef __NR_pause _syscall0(int, pause) - #else - -#include <signal.h> int pause(void) { return (__sigpause(sigblock(0), 0)); } - #endif |