signal.h revision 93032
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 *
3551794Smarcel * $FreeBSD: head/include/signal.h 93032 2002-03-23 17:24:55Z imp $
361539Srgrimes */
371539Srgrimes
389343Sbde#ifndef _SIGNAL_H_
399343Sbde#define	_SIGNAL_H_
401539Srgrimes
411539Srgrimes#include <sys/cdefs.h>
4234925Sdufault#include <sys/_posix.h>
4338119Sdfr#include <machine/ansi.h>
441539Srgrimes#include <sys/signal.h>
4551794Smarcel#include <sys/time.h>
461539Srgrimes
471539Srgrimes#if !defined(_ANSI_SOURCE) && !defined(_POSIX_SOURCE)
481539Srgrimesextern __const char *__const sys_signame[NSIG];
491539Srgrimesextern __const char *__const sys_siglist[NSIG];
5047289Speterextern __const int sys_nsig;
511539Srgrimes#endif
521539Srgrimes
531539Srgrimes__BEGIN_DECLS
5493032Simpint	raise(int);
551539Srgrimes#ifndef	_ANSI_SOURCE
5693032Simpint	kill(_BSD_PID_T_, int);
5793032Simpint	sigaction(int, const struct sigaction *, struct sigaction *);
5893032Simpint	sigaddset(sigset_t *, int);
5993032Simpint	sigdelset(sigset_t *, int);
6093032Simpint	sigemptyset(sigset_t *);
6193032Simpint	sigfillset(sigset_t *);
6293032Simpint	sigismember(const sigset_t *, int);
6393032Simpint	sigpending(sigset_t *);
6493032Simpint	sigprocmask(int, const sigset_t *, sigset_t *);
6593032Simpint	sigsuspend(const sigset_t *);
6693032Simpint	sigwait(const sigset_t *, int *);
6734319Sdufault
6834319Sdufault
6934925Sdufault#ifdef _P1003_1B_VISIBLE
7034319Sdufault
7134319Sdufault__BEGIN_DECLS
7293032Simpint sigqueue(_BSD_PID_T_, int, const union sigval);
7393032Simpint sigtimedwait(const sigset_t *, siginfo_t *, const struct timespec *);
7493032Simpint sigwaitinfo(const sigset_t *, siginfo_t *);
7534319Sdufault__END_DECLS
7634319Sdufault
7734030Sdufault#endif
781539Srgrimes#ifndef _POSIX_SOURCE
7993032Simpint	killpg(_BSD_PID_T_, int);
8093032Simpint	sigaltstack(const stack_t *, stack_t *);
8193032Simpint	sigblock(int);
8293032Simpint	siginterrupt(int, int);
8393032Simpint	sigpause(int);
8493032Simpint	sigreturn(const struct __ucontext *);
8593032Simpint	sigsetmask(int);
8693032Simpint	sigstack(const struct sigstack *, struct sigstack *);
8793032Simpint	sigvec(int, struct sigvec *, struct sigvec *);
8893032Simpvoid	psignal(unsigned int, const char *);
899343Sbde#endif /* !_POSIX_SOURCE */
909343Sbde#endif /* !_ANSI_SOURCE */
911539Srgrimes__END_DECLS
921539Srgrimes
939343Sbde#endif /* !_SIGNAL_H_ */
94