Add psignal to the POSIX.1-2008 namespace.

This commit is contained in:
David Schultz 2009-03-04 03:32:56 +00:00
parent b2aa672ecd
commit a5e88ed711
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=189352

View File

@ -95,6 +95,10 @@ int sigpause(int);
int siginterrupt(int, int);
#endif
#if __POSIX_VISIBLE >= 200809 || __BSD_VISIBLE
void psignal(unsigned int, const char *);
#endif
#if __BSD_VISIBLE
int sigblock(int);
struct __ucontext; /* XXX spec requires a complete declaration. */
@ -102,7 +106,6 @@ int sigreturn(const struct __ucontext *);
int sigsetmask(int);
int sigstack(const struct sigstack *, struct sigstack *);
int sigvec(int, struct sigvec *, struct sigvec *);
void psignal(unsigned int, const char *);
#endif
__END_DECLS