1994-05-24 09:57:34 +00:00
|
|
|
/*-
|
2017-11-20 19:45:28 +00:00
|
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
*
|
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.
|
2010-02-16 19:39:50 +00:00
|
|
|
* 3. Neither the name of the University nor the names of its contributors
|
1994-05-24 09:57:34 +00:00
|
|
|
* 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>
|
2002-08-21 16:20:02 +00:00
|
|
|
#include <sys/_types.h>
|
1998-08-05 08:51:48 +00:00
|
|
|
#include <sys/signal.h>
|
2016-02-13 17:23:55 +00:00
|
|
|
#if __POSIX_VISIBLE >= 200112 || __XSI_VISIBLE
|
2016-02-12 07:38:19 +00:00
|
|
|
#include <machine/ucontext.h>
|
|
|
|
#include <sys/_ucontext.h>
|
2016-02-13 17:23:55 +00:00
|
|
|
#endif
|
1994-05-24 09:57:34 +00:00
|
|
|
|
2017-01-28 20:54:43 +00:00
|
|
|
__NULLABILITY_PRAGMA_PUSH
|
|
|
|
|
2002-10-06 21:54:08 +00:00
|
|
|
#if __BSD_VISIBLE
|
2002-10-14 14:13:37 +00:00
|
|
|
/*
|
|
|
|
* XXX should enlarge these, if only to give empty names instead of bounds
|
|
|
|
* errors for large signal numbers.
|
|
|
|
*/
|
2011-12-13 13:32:56 +00:00
|
|
|
extern const char * const sys_signame[NSIG];
|
|
|
|
extern const char * const sys_siglist[NSIG];
|
|
|
|
extern const int sys_nsig;
|
1994-05-24 09:57:34 +00:00
|
|
|
#endif
|
|
|
|
|
2002-10-13 00:29:06 +00:00
|
|
|
#if __POSIX_VISIBLE >= 200112 || __XSI_VISIBLE
|
2002-10-06 21:54:08 +00:00
|
|
|
#ifndef _PID_T_DECLARED
|
|
|
|
typedef __pid_t pid_t;
|
|
|
|
#define _PID_T_DECLARED
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2009-03-14 20:10:14 +00:00
|
|
|
#if __POSIX_VISIBLE || __XSI_VISIBLE
|
|
|
|
struct pthread; /* XXX */
|
|
|
|
typedef struct pthread *__pthread_t;
|
|
|
|
#if !defined(_PTHREAD_T_DECLARED) && __POSIX_VISIBLE >= 200809
|
|
|
|
typedef __pthread_t pthread_t;
|
|
|
|
#define _PTHREAD_T_DECLARED
|
|
|
|
#endif
|
|
|
|
#endif /* __POSIX_VISIBLE || __XSI_VISIBLE */
|
|
|
|
|
1994-05-24 09:57:34 +00:00
|
|
|
__BEGIN_DECLS
|
2002-03-23 17:24:55 +00:00
|
|
|
int raise(int);
|
2002-10-06 21:54:08 +00:00
|
|
|
|
2002-10-13 00:29:06 +00:00
|
|
|
#if __POSIX_VISIBLE || __XSI_VISIBLE
|
2002-08-21 16:20:02 +00:00
|
|
|
int kill(__pid_t, int);
|
2009-03-14 20:10:14 +00:00
|
|
|
int pthread_kill(__pthread_t, int);
|
2011-02-20 09:52:29 +00:00
|
|
|
int pthread_sigmask(int, const __sigset_t * __restrict,
|
|
|
|
__sigset_t * __restrict);
|
2002-10-02 10:53:44 +00:00
|
|
|
int sigaction(int, const struct sigaction * __restrict,
|
|
|
|
struct sigaction * __restrict);
|
2002-03-23 17:24:55 +00:00
|
|
|
int sigaddset(sigset_t *, int);
|
|
|
|
int sigdelset(sigset_t *, int);
|
|
|
|
int sigemptyset(sigset_t *);
|
|
|
|
int sigfillset(sigset_t *);
|
|
|
|
int sigismember(const sigset_t *, int);
|
2017-01-28 20:54:43 +00:00
|
|
|
int sigpending(sigset_t * _Nonnull);
|
2002-10-02 10:53:44 +00:00
|
|
|
int sigprocmask(int, const sigset_t * __restrict, sigset_t * __restrict);
|
2017-01-28 20:54:43 +00:00
|
|
|
int sigsuspend(const sigset_t * _Nonnull);
|
|
|
|
int sigwait(const sigset_t * _Nonnull __restrict,
|
|
|
|
int * _Nonnull __restrict);
|
2002-10-06 21:54:08 +00:00
|
|
|
#endif
|
1998-03-08 17:25:38 +00:00
|
|
|
|
2002-10-13 00:29:06 +00:00
|
|
|
#if __POSIX_VISIBLE >= 199506 || __XSI_VISIBLE >= 600
|
2005-10-16 22:23:03 +00:00
|
|
|
int sigqueue(__pid_t, int, const union sigval);
|
2005-10-14 13:12:27 +00:00
|
|
|
|
2002-10-14 14:13:37 +00:00
|
|
|
struct timespec;
|
2002-10-06 21:54:08 +00:00
|
|
|
int sigtimedwait(const sigset_t * __restrict, siginfo_t * __restrict,
|
2002-10-02 10:53:44 +00:00
|
|
|
const struct timespec * __restrict);
|
2002-10-06 21:54:08 +00:00
|
|
|
int sigwaitinfo(const sigset_t * __restrict, siginfo_t * __restrict);
|
1998-03-04 10:27:00 +00:00
|
|
|
#endif
|
2002-10-06 21:54:08 +00:00
|
|
|
|
2002-10-13 00:29:06 +00:00
|
|
|
#if __XSI_VISIBLE
|
2002-08-21 16:20:02 +00:00
|
|
|
int killpg(__pid_t, int);
|
2002-10-02 10:53:44 +00:00
|
|
|
int sigaltstack(const stack_t * __restrict, stack_t * __restrict);
|
2009-12-22 22:15:52 +00:00
|
|
|
int sighold(int);
|
|
|
|
int sigignore(int);
|
|
|
|
int sigpause(int);
|
|
|
|
int sigrelse(int);
|
2017-01-28 20:54:43 +00:00
|
|
|
void (* _Nullable sigset(int, void (* _Nullable)(int)))(int);
|
2009-12-22 22:15:52 +00:00
|
|
|
int xsi_sigpause(int);
|
2002-10-06 21:54:08 +00:00
|
|
|
#endif
|
|
|
|
|
2009-03-14 20:10:14 +00:00
|
|
|
#if __XSI_VISIBLE >= 600
|
2002-10-13 00:29:06 +00:00
|
|
|
int siginterrupt(int, int);
|
|
|
|
#endif
|
|
|
|
|
2014-05-11 13:48:21 +00:00
|
|
|
#if __POSIX_VISIBLE >= 200809
|
2016-05-30 13:51:27 +00:00
|
|
|
void psignal(int, const char *);
|
2009-03-04 03:32:56 +00:00
|
|
|
#endif
|
|
|
|
|
2002-10-06 21:54:08 +00:00
|
|
|
#if __BSD_VISIBLE
|
2019-12-12 01:41:55 +00:00
|
|
|
int sigandset(sigset_t *dest, const sigset_t *left, const sigset_t *right);
|
2002-10-06 21:54:08 +00:00
|
|
|
int sigblock(int);
|
2019-12-12 01:41:55 +00:00
|
|
|
int sigisemptyset(const sigset_t *set);
|
|
|
|
int sigorset(sigset_t *dest, const sigset_t *left, const sigset_t *right);
|
2002-03-23 17:24:55 +00:00
|
|
|
int sigreturn(const struct __ucontext *);
|
|
|
|
int sigsetmask(int);
|
|
|
|
int sigstack(const struct sigstack *, struct sigstack *);
|
|
|
|
int sigvec(int, struct sigvec *, struct sigvec *);
|
2002-10-06 21:54:08 +00:00
|
|
|
#endif
|
1994-05-24 09:57:34 +00:00
|
|
|
__END_DECLS
|
2017-01-28 20:54:43 +00:00
|
|
|
__NULLABILITY_PRAGMA_POP
|
1994-05-24 09:57:34 +00:00
|
|
|
|
1995-06-28 02:14:13 +00:00
|
|
|
#endif /* !_SIGNAL_H_ */
|