signal.h revision 189352
11539Srgrimes/*-
21539Srgrimes * Copyright (c) 1991, 1993
31539Srgrimes *	The Regents of the University of California.  All rights reserved.
41539Srgrimes *
51539Srgrimes * Redistribution and use in source and binary forms, with or without
61539Srgrimes * modification, are permitted provided that the following conditions
71539Srgrimes * are met:
81539Srgrimes * 1. Redistributions of source code must retain the above copyright
91539Srgrimes *    notice, this list of conditions and the following disclaimer.
101539Srgrimes * 2. Redistributions in binary form must reproduce the above copyright
111539Srgrimes *    notice, this list of conditions and the following disclaimer in the
121539Srgrimes *    documentation and/or other materials provided with the distribution.
131539Srgrimes * 3. All advertising materials mentioning features or use of this software
141539Srgrimes *    must display the following acknowledgement:
151539Srgrimes *	This product includes software developed by the University of
161539Srgrimes *	California, Berkeley and its contributors.
171539Srgrimes * 4. Neither the name of the University nor the names of its contributors
181539Srgrimes *    may be used to endorse or promote products derived from this software
191539Srgrimes *    without specific prior written permission.
201539Srgrimes *
211539Srgrimes * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
221539Srgrimes * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
231539Srgrimes * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
241539Srgrimes * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
251539Srgrimes * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
261539Srgrimes * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
271539Srgrimes * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
281539Srgrimes * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
291539Srgrimes * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
301539Srgrimes * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
311539Srgrimes * SUCH DAMAGE.
321539Srgrimes *
331539Srgrimes *	@(#)signal.h	8.3 (Berkeley) 3/30/94
3451794Smarcel * $FreeBSD: head/include/signal.h 189352 2009-03-04 03:32:56Z das $
351539Srgrimes */
361539Srgrimes
379343Sbde#ifndef _SIGNAL_H_
389343Sbde#define	_SIGNAL_H_
391539Srgrimes
401539Srgrimes#include <sys/cdefs.h>
41102227Smike#include <sys/_types.h>
421539Srgrimes#include <sys/signal.h>
431539Srgrimes
44104582Smike#if __BSD_VISIBLE
45105107Smike/*
46105107Smike * XXX should enlarge these, if only to give empty names instead of bounds
47105107Smike * errors for large signal numbers.
48105107Smike */
491539Srgrimesextern __const char *__const sys_signame[NSIG];
501539Srgrimesextern __const char *__const sys_siglist[NSIG];
5147289Speterextern __const int sys_nsig;
521539Srgrimes#endif
531539Srgrimes
54105013Smike#if __POSIX_VISIBLE >= 200112 || __XSI_VISIBLE
55104582Smike#ifndef _PID_T_DECLARED
56104582Smiketypedef	__pid_t		pid_t;
57104582Smike#define	_PID_T_DECLARED
58104582Smike#endif
59104582Smike#endif
60104582Smike
611539Srgrimes__BEGIN_DECLS
6293032Simpint	raise(int);
63104582Smike
64105013Smike#if __POSIX_VISIBLE || __XSI_VISIBLE
65102227Smikeint	kill(__pid_t, int);
66104368Srobertint	sigaction(int, const struct sigaction * __restrict,
67104368Srobert	    struct sigaction * __restrict);
6893032Simpint	sigaddset(sigset_t *, int);
6993032Simpint	sigdelset(sigset_t *, int);
7093032Simpint	sigemptyset(sigset_t *);
7193032Simpint	sigfillset(sigset_t *);
7293032Simpint	sigismember(const sigset_t *, int);
7393032Simpint	sigpending(sigset_t *);
74104368Srobertint	sigprocmask(int, const sigset_t * __restrict, sigset_t * __restrict);
7593032Simpint	sigsuspend(const sigset_t *);
76104989Smikeint	sigwait(const sigset_t * __restrict, int * __restrict);
77104582Smike#endif
7834319Sdufault
79105013Smike#if __POSIX_VISIBLE >= 199506 || __XSI_VISIBLE >= 600
80151395Sdavidxuint	sigqueue(__pid_t, int, const union sigval);
81151318Sdavidxu
82105107Smikestruct timespec;
83104582Smikeint	sigtimedwait(const sigset_t * __restrict, siginfo_t * __restrict,
84104368Srobert	    const struct timespec * __restrict);
85104582Smikeint	sigwaitinfo(const sigset_t * __restrict, siginfo_t * __restrict);
86104582Smike#endif
8734319Sdufault
88105013Smike#if __XSI_VISIBLE
89102227Smikeint	killpg(__pid_t, int);
90104368Srobertint	sigaltstack(const stack_t * __restrict, stack_t * __restrict);
9193032Simpint	sigpause(int);
92104582Smike#endif
93104582Smike
94105013Smike#if __POSIX_VISIBLE >= 200112
95105013Smikeint	siginterrupt(int, int);
96105013Smike#endif
97105013Smike
98189352Sdas#if __POSIX_VISIBLE >= 200809 || __BSD_VISIBLE
99189352Sdasvoid	psignal(unsigned int, const char *);
100189352Sdas#endif
101189352Sdas
102104582Smike#if __BSD_VISIBLE
103104582Smikeint	sigblock(int);
104105107Smikestruct __ucontext;		/* XXX spec requires a complete declaration. */
10593032Simpint	sigreturn(const struct __ucontext *);
10693032Simpint	sigsetmask(int);
10793032Simpint	sigstack(const struct sigstack *, struct sigstack *);
10893032Simpint	sigvec(int, struct sigvec *, struct sigvec *);
109104582Smike#endif
1101539Srgrimes__END_DECLS
1111539Srgrimes
1129343Sbde#endif /* !_SIGNAL_H_ */
113