diff options
Diffstat (limited to 'include/signal.h')
-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 4196a6f012..3d599ef19a 100644 --- a/include/signal.h +++ b/include/signal.h @@ -22,9 +22,12 @@ extern int __sigprocmask (int __how, extern int __sigsuspend (__const sigset_t *__set); libc_hidden_proto (__sigsuspend) extern int __sigwait (__const sigset_t *__set, int *__sig); +libc_hidden_proto (__sigwait) extern int __sigwaitinfo (__const sigset_t *__set, siginfo_t *__info); +libc_hidden_proto (__sigwaitinfo) extern int __sigtimedwait (__const sigset_t *__set, siginfo_t *__info, __const struct timespec *__timeout); +libc_hidden_proto (__sigtimedwait) extern int __sigqueue (__pid_t __pid, int __sig, __const union sigval __val); extern int __sigvec (int __sig, __const struct sigvec *__vec, |