diff options
author | robert <robert@FreeBSD.org> | 2002-10-02 10:53:44 +0000 |
---|---|---|
committer | robert <robert@FreeBSD.org> | 2002-10-02 10:53:44 +0000 |
commit | 4ab3b5c0e7f470c2a4a31f60fcd78f83f89c5102 (patch) | |
tree | e46b96148e29adb4f50d75525588c214bf815190 /include | |
parent | aef5d44ac2ade131aba09b58aed0efe06c7b9a19 (diff) | |
download | FreeBSD-src-4ab3b5c0e7f470c2a4a31f60fcd78f83f89c5102.zip FreeBSD-src-4ab3b5c0e7f470c2a4a31f60fcd78f83f89c5102.tar.gz |
Add the 'restrict' type qualifier to the prototypes of `sigaction',
`sigprocmask', `sigaltstack', and `sigwait' as well as to the
prototypes of the apparantly unimplemented functions `sigtimedwait'
and `sigwaitinfo'. This complies with IEEE Std 1003.1-2001.
Diffstat (limited to 'include')
-rw-r--r-- | include/signal.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/include/signal.h b/include/signal.h index ec6e5a0..7abb920 100644 --- a/include/signal.h +++ b/include/signal.h @@ -54,30 +54,31 @@ __BEGIN_DECLS int raise(int); #ifndef _ANSI_SOURCE int kill(__pid_t, int); -int sigaction(int, const struct sigaction *, struct sigaction *); +int sigaction(int, const struct sigaction * __restrict, + struct sigaction * __restrict); int sigaddset(sigset_t *, int); int sigdelset(sigset_t *, int); int sigemptyset(sigset_t *); int sigfillset(sigset_t *); int sigismember(const sigset_t *, int); int sigpending(sigset_t *); -int sigprocmask(int, const sigset_t *, sigset_t *); +int sigprocmask(int, const sigset_t * __restrict, sigset_t * __restrict); int sigsuspend(const sigset_t *); int sigwait(const sigset_t *, int *); - #ifdef _P1003_1B_VISIBLE __BEGIN_DECLS int sigqueue(__pid_t, int, const union sigval); -int sigtimedwait(const sigset_t *, siginfo_t *, const struct timespec *); -int sigwaitinfo(const sigset_t *, siginfo_t *); +int sigtimedwait(const sigset_t * __restrict, siginfo_t * __restrict, + const struct timespec * __restrict); +int sigwaitinfo(const sigset_t * __restrict, siginfo_t * __restrict); __END_DECLS #endif #ifndef _POSIX_SOURCE int killpg(__pid_t, int); -int sigaltstack(const stack_t *, stack_t *); +int sigaltstack(const stack_t * __restrict, stack_t * __restrict); int sigblock(int); int siginterrupt(int, int); int sigpause(int); |