From 7983bf570622e24915aee7e31360a06d4748e13e Mon Sep 17 00:00:00 2001 From: kib Date: Sun, 20 Feb 2011 09:52:29 +0000 Subject: Add restrict keyword to pthread_sigmask prototype and manpage. MFC after: 1 week --- include/signal.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'include') diff --git a/include/signal.h b/include/signal.h index 4a4cd17..32b9e6b 100644 --- a/include/signal.h +++ b/include/signal.h @@ -69,7 +69,8 @@ int raise(int); #if __POSIX_VISIBLE || __XSI_VISIBLE int kill(__pid_t, int); int pthread_kill(__pthread_t, int); -int pthread_sigmask(int, const __sigset_t *, __sigset_t *); +int pthread_sigmask(int, const __sigset_t * __restrict, + __sigset_t * __restrict); int sigaction(int, const struct sigaction * __restrict, struct sigaction * __restrict); int sigaddset(sigset_t *, int); -- cgit v1.1