From 2cd396dc532ef8d1bcf23be48d8042de18c1d8d0 Mon Sep 17 00:00:00 2001 From: mike Date: Mon, 14 Oct 2002 14:13:37 +0000 Subject: o Move forward declaration for struct timespec to a more appropriate location. o Don't prototype functions for which we don't have an implementation. o Add forward declaration for struct __ucontext, previously this was forward declared in . o Add a comment about the size of NSIG. PR: 35924 Submitted by: bde --- include/signal.h | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) (limited to 'include') diff --git a/include/signal.h b/include/signal.h index fff063d..627672b 100644 --- a/include/signal.h +++ b/include/signal.h @@ -43,6 +43,10 @@ #include #if __BSD_VISIBLE +/* + * XXX should enlarge these, if only to give empty names instead of bounds + * errors for large signal numbers. + */ extern __const char *__const sys_signame[NSIG]; extern __const char *__const sys_siglist[NSIG]; extern __const int sys_nsig; @@ -56,8 +60,6 @@ typedef __pid_t pid_t; #endif __BEGIN_DECLS -struct timespec; - int raise(int); #if __POSIX_VISIBLE || __XSI_VISIBLE @@ -76,11 +78,20 @@ int sigwait(const sigset_t * __restrict, int * __restrict); #endif #if __POSIX_VISIBLE >= 199506 || __XSI_VISIBLE >= 600 +#if 0 +/* + * PR: 35924 + * XXX we don't actually have these. We set _POSIX_REALTIME_SIGNALS to + * -1 to show that we don't have them, but this symbol is not necessarily + * in scope (in the current implementation), so we can't use it here. + */ int sigqueue(__pid_t, int, const union sigval); +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); @@ -94,6 +105,7 @@ int siginterrupt(int, int); #if __BSD_VISIBLE int sigblock(int); +struct __ucontext; /* XXX spec requires a complete declaration. */ int sigreturn(const struct __ucontext *); int sigsetmask(int); int sigstack(const struct sigstack *, struct sigstack *); -- cgit v1.1