1994-05-24 09:57:34 +00:00
|
|
|
/*-
|
|
|
|
* Copyright (c) 1991, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by the University of
|
|
|
|
* California, Berkeley and its contributors.
|
|
|
|
* 4. Neither the name of the University nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* @(#)signal.h 8.3 (Berkeley) 3/30/94
|
1999-09-29 15:18:46 +00:00
|
|
|
*
|
|
|
|
* $FreeBSD$
|
1994-05-24 09:57:34 +00:00
|
|
|
*/
|
|
|
|
|
1995-06-28 02:14:13 +00:00
|
|
|
#ifndef _SIGNAL_H_
|
|
|
|
#define _SIGNAL_H_
|
1994-05-24 09:57:34 +00:00
|
|
|
|
|
|
|
#include <sys/cdefs.h>
|
1998-03-28 11:51:01 +00:00
|
|
|
#include <sys/_posix.h>
|
1995-06-28 02:14:13 +00:00
|
|
|
#include <machine/ansi.h>
|
1998-08-05 08:51:48 +00:00
|
|
|
#include <sys/signal.h>
|
1999-09-29 15:18:46 +00:00
|
|
|
#include <sys/time.h>
|
1994-05-24 09:57:34 +00:00
|
|
|
|
|
|
|
#if !defined(_ANSI_SOURCE) && !defined(_POSIX_SOURCE)
|
|
|
|
extern __const char *__const sys_signame[NSIG];
|
|
|
|
extern __const char *__const sys_siglist[NSIG];
|
1999-05-18 04:48:58 +00:00
|
|
|
extern __const int sys_nsig;
|
1994-05-24 09:57:34 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
__BEGIN_DECLS
|
|
|
|
int raise __P((int));
|
|
|
|
#ifndef _ANSI_SOURCE
|
1995-06-28 02:14:13 +00:00
|
|
|
int kill __P((_BSD_PID_T_, int));
|
1994-05-24 09:57:34 +00:00
|
|
|
int sigaction __P((int, const struct sigaction *, struct sigaction *));
|
|
|
|
int sigaddset __P((sigset_t *, int));
|
|
|
|
int sigdelset __P((sigset_t *, int));
|
|
|
|
int sigemptyset __P((sigset_t *));
|
|
|
|
int sigfillset __P((sigset_t *));
|
|
|
|
int sigismember __P((const sigset_t *, int));
|
|
|
|
int sigpending __P((sigset_t *));
|
|
|
|
int sigprocmask __P((int, const sigset_t *, sigset_t *));
|
|
|
|
int sigsuspend __P((const sigset_t *));
|
1998-08-25 11:08:22 +00:00
|
|
|
int sigwait __P((const sigset_t *, int *));
|
1998-03-08 17:25:38 +00:00
|
|
|
|
|
|
|
|
1998-03-28 11:51:01 +00:00
|
|
|
#ifdef _P1003_1B_VISIBLE
|
1998-03-08 17:25:38 +00:00
|
|
|
|
|
|
|
__BEGIN_DECLS
|
1998-03-04 10:27:00 +00:00
|
|
|
int sigqueue __P((_BSD_PID_T_, int, const union sigval));
|
1999-09-29 15:18:46 +00:00
|
|
|
int sigtimedwait __P((const sigset_t *, siginfo_t *, const struct timespec *));
|
1998-03-08 17:25:38 +00:00
|
|
|
int sigwaitinfo __P((const sigset_t *, siginfo_t *));
|
|
|
|
__END_DECLS
|
|
|
|
|
1998-03-04 10:27:00 +00:00
|
|
|
#endif
|
1994-05-24 09:57:34 +00:00
|
|
|
#ifndef _POSIX_SOURCE
|
1995-06-28 02:14:13 +00:00
|
|
|
int killpg __P((_BSD_PID_T_, int));
|
1999-09-29 15:18:46 +00:00
|
|
|
int sigaltstack __P((const stack_t *, stack_t *));
|
1994-05-24 09:57:34 +00:00
|
|
|
int sigblock __P((int));
|
|
|
|
int siginterrupt __P((int, int));
|
|
|
|
int sigpause __P((int));
|
1999-09-29 15:18:46 +00:00
|
|
|
int sigreturn __P((ucontext_t *));
|
1994-05-24 09:57:34 +00:00
|
|
|
int sigsetmask __P((int));
|
|
|
|
int sigstack __P((const struct sigstack *, struct sigstack *));
|
|
|
|
int sigvec __P((int, struct sigvec *, struct sigvec *));
|
|
|
|
void psignal __P((unsigned int, const char *));
|
1995-06-28 02:14:13 +00:00
|
|
|
#endif /* !_POSIX_SOURCE */
|
|
|
|
#endif /* !_ANSI_SOURCE */
|
1994-05-24 09:57:34 +00:00
|
|
|
__END_DECLS
|
|
|
|
|
1995-06-28 02:14:13 +00:00
|
|
|
#endif /* !_SIGNAL_H_ */
|