diff options
author | Roland McGrath <roland@gnu.org> | 2006-07-31 05:58:51 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2006-07-31 05:58:51 +0000 |
commit | b894c2ea7e9dbf9d777555a2e1a917f5abcbb550 (patch) | |
tree | 2329d7803837f09fe25bd3471fa38dc86568598c /include | |
parent | b32e6700d0a114c0132bd94cc1b49332a364dc8c (diff) | |
download | glibc-b894c2ea7e9dbf9d777555a2e1a917f5abcbb550.tar.gz glibc-b894c2ea7e9dbf9d777555a2e1a917f5abcbb550.tar.xz glibc-b894c2ea7e9dbf9d777555a2e1a917f5abcbb550.zip |
* sysdeps/unix/sysv/linux/ia64/sigsuspend.c: File removed. cvs/fedora-glibc-20060731T0706
* sysdeps/unix/sysv/linux/x86_64/sigsuspend.c: File removed. * sysdeps/unix/sysv/linux/s390/s390-64/sigsuspend.c: File removed. * sysdeps/unix/sysv/linux/sparc/sparc64/sigsuspend.c: File removed. * sysdeps/unix/sysv/linux/not-cancel.h (pause_not_cancel): New macro. (nanosleep_not_cancel): New macro. (sigsuspend_not_cancel): new macro. * sysdeps/unix/sysv/linux/sigsuspend.c [__ASSUME_REALTIME_SIGNALS] (do_sigsuspend): Define as inline. (__sigsuspend): Always use do_sigsuspend. [! NO_CANCELLATION] (__sigsuspend_nocancel): New function. * include/signal.h: Declare __sigsuspend_nocancel. * sysdeps/posix/pause.c [! NO_CANCELLATION] (__pause_nocancel): New function. * include/unistd.h (__pause_nocancel): Add attribute_hidden. * include/time.h (__nanosleep_nocancel): Likewise.
Diffstat (limited to 'include')
-rw-r--r-- | include/signal.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/signal.h b/include/signal.h index 2be67babad..6bbfbcf808 100644 --- a/include/signal.h +++ b/include/signal.h @@ -26,6 +26,9 @@ extern int __sigprocmask (int __how, __const sigset_t *__set, sigset_t *__oset); extern int __sigsuspend (__const sigset_t *__set); libc_hidden_proto (__sigsuspend) +#ifndef NO_CANCELLATION +extern int __sigsuspend_nocancel (__const sigset_t *__set) attribute_hidden; +#endif extern int __sigwait (__const sigset_t *__set, int *__sig); libc_hidden_proto (__sigwait) extern int __sigwaitinfo (__const sigset_t *__set, siginfo_t *__info); |