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 /lib/libc/sys/sigaction.2 | |
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 'lib/libc/sys/sigaction.2')
-rw-r--r-- | lib/libc/sys/sigaction.2 | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/libc/sys/sigaction.2 b/lib/libc/sys/sigaction.2 index 197e9f3..e23535a 100644 --- a/lib/libc/sys/sigaction.2 +++ b/lib/libc/sys/sigaction.2 @@ -57,7 +57,10 @@ struct sigaction { #define sa_sigaction __sigaction_u.__sa_sigaction .Ed .Ft int -.Fn sigaction "int sig" "const struct sigaction *act" "struct sigaction *oact" +.Fo sigaction +.Fa "int sig" "const struct sigaction * restrict act" +.Fa "struct sigaction * restrict oact" +.Fc .Sh DESCRIPTION The system defines a set of signals that may be delivered to a process. Signal delivery resembles the occurrence of a hardware interrupt: |