diff options
author | Markos Chandras <markos.chandras@imgtec.com> | 2013-01-15 13:47:31 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2013-02-27 22:16:12 +0100 |
commit | 49d3f93362c7eb359f82a4d9204a0519f73f3820 (patch) | |
tree | c902e28c3c05dc872ecfee47ba509248d4c68bd2 /libc/sysdeps/linux/common/not-cancel.h | |
parent | 79cd5fb435d910233b1eb03c93c6ae05908ab42b (diff) |
libc/pause: Enable pause_nocancel for arches without __NR_pause
Signed-off-by: Markos Chandras <markos.chandras@imgtec.com>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'libc/sysdeps/linux/common/not-cancel.h')
-rw-r--r-- | libc/sysdeps/linux/common/not-cancel.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/libc/sysdeps/linux/common/not-cancel.h b/libc/sysdeps/linux/common/not-cancel.h index 08dab8c9d..acf8e39e8 100644 --- a/libc/sysdeps/linux/common/not-cancel.h +++ b/libc/sysdeps/linux/common/not-cancel.h @@ -102,9 +102,11 @@ extern int __openat64_nocancel (int fd, const char *fname, int oflag, #ifdef __NR_pause # define pause_not_cancel() \ INLINE_SYSCALL (pause, 0) -/*#else +#else +# include <unistd.h> +extern __typeof(pause) __pause_nocancel; # define pause_not_cancel() \ - __pause_nocancel ()*/ + __pause_nocancel () #endif /* Uncancelable nanosleep. */ |