diff options
author | jeff <jeff@FreeBSD.org> | 2003-03-31 23:30:41 +0000 |
---|---|---|
committer | jeff <jeff@FreeBSD.org> | 2003-03-31 23:30:41 +0000 |
commit | b23496dd5426819dd9f0306b3f0271781e72ca94 (patch) | |
tree | f1fa75c8ce86783171186b3c3c3e7ffc669e2283 /include | |
parent | 7e134f95f3b31d917bf5acfa4e8b81684ddd1076 (diff) | |
download | FreeBSD-src-b23496dd5426819dd9f0306b3f0271781e72ca94.zip FreeBSD-src-b23496dd5426819dd9f0306b3f0271781e72ca94.tar.gz |
- Define sigwait, sigtimedwait, and sigwaitinfo in terms of
kern_sigtimedwait() which is capable of supporting all of their semantics.
- These should be POSIX compliant but more careful review is needed before
we announce this.
Diffstat (limited to 'include')
-rw-r--r-- | include/signal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/signal.h b/include/signal.h index 572cad5..e869e1d 100644 --- a/include/signal.h +++ b/include/signal.h @@ -85,12 +85,12 @@ int sigwait(const sigset_t * __restrict, int * __restrict); * in scope (in the current implementation), so we can't use it here. */ int sigqueue(__pid_t, int, const union sigval); +#endif struct timespec; int sigtimedwait(const sigset_t * __restrict, siginfo_t * __restrict, const struct timespec * __restrict); int sigwaitinfo(const sigset_t * __restrict, siginfo_t * __restrict); #endif -#endif #if __XSI_VISIBLE int killpg(__pid_t, int); |