2006-01-07 23:10:29 +03:00
|
|
|
/* $NetBSD: signal.h,v 1.48 2006/01/07 20:10:29 kleink Exp $ */
|
1994-10-26 03:55:40 +03:00
|
|
|
|
1994-05-11 07:37:39 +04: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.
|
2003-08-07 13:44:09 +04:00
|
|
|
* 3. Neither the name of the University nor the names of its contributors
|
1994-05-11 07:37:39 +04: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
|
|
|
|
*/
|
|
|
|
|
1998-05-26 01:55:48 +04:00
|
|
|
#ifndef _SIGNAL_H_
|
|
|
|
#define _SIGNAL_H_
|
1994-05-11 07:37:39 +04:00
|
|
|
|
|
|
|
#include <sys/cdefs.h>
|
1998-05-26 01:55:48 +04:00
|
|
|
#include <sys/featuretest.h>
|
1994-05-11 07:37:39 +04:00
|
|
|
|
Add a new feature-test macro, _NETBSD_SOURCE. If this is defined
by the application, all NetBSD interfaces are made visible, even
if some other feature-test macro (like _POSIX_C_SOURCE) is defined.
<sys/featuretest.h> defined _NETBSD_SOURCE if none of _ANSI_SOURCE,
_POSIX_C_SOURCE and _XOPEN_SOURCE is defined, so as to preserve
existing behaviour.
This has two major advantages:
+ Programs that require non-POSIX facilities but define _POSIX_C_SOURCE
can trivially be overruled by putting -D_NETBSD_SOURCE in their CFLAGS.
+ It makes most of the #ifs simpler, in that they're all now ORs of the
various macros, rather than having checks for (!defined(_ANSI_SOURCE) ||
!defined(_POSIX_C_SOURCE) || !defined(_XOPEN_SOURCE)) all over the place.
I've tried not to change the semantics of the headers in any case where
_NETBSD_SOURCE wasn't defined, but there were some places where the
current semantics were clearly mad, and retaining them was harder than
correcting them. In particular, I've mostly normalised things so that
_ANSI_SOURCE gets you the smallest set of stuff, then _POSIX_C_SOURCE,
_XOPEN_SOURCE and _NETBSD_SOURCE in that order.
Tested by building for vax, encouraged by thorpej, and uncontested in
tech-userlevel for a week.
2003-04-29 03:16:11 +04:00
|
|
|
#if defined(_POSIX_C_SOURCE) || defined(_XOPEN_SOURCE) || \
|
|
|
|
defined(_NETBSD_SOURCE)
|
1995-01-10 04:33:23 +03:00
|
|
|
#include <sys/types.h>
|
|
|
|
#endif
|
|
|
|
|
1997-11-18 23:30:24 +03:00
|
|
|
#include <sys/signal.h>
|
|
|
|
|
Add a new feature-test macro, _NETBSD_SOURCE. If this is defined
by the application, all NetBSD interfaces are made visible, even
if some other feature-test macro (like _POSIX_C_SOURCE) is defined.
<sys/featuretest.h> defined _NETBSD_SOURCE if none of _ANSI_SOURCE,
_POSIX_C_SOURCE and _XOPEN_SOURCE is defined, so as to preserve
existing behaviour.
This has two major advantages:
+ Programs that require non-POSIX facilities but define _POSIX_C_SOURCE
can trivially be overruled by putting -D_NETBSD_SOURCE in their CFLAGS.
+ It makes most of the #ifs simpler, in that they're all now ORs of the
various macros, rather than having checks for (!defined(_ANSI_SOURCE) ||
!defined(_POSIX_C_SOURCE) || !defined(_XOPEN_SOURCE)) all over the place.
I've tried not to change the semantics of the headers in any case where
_NETBSD_SOURCE wasn't defined, but there were some places where the
current semantics were clearly mad, and retaining them was harder than
correcting them. In particular, I've mostly normalised things so that
_ANSI_SOURCE gets you the smallest set of stuff, then _POSIX_C_SOURCE,
_XOPEN_SOURCE and _NETBSD_SOURCE in that order.
Tested by building for vax, encouraged by thorpej, and uncontested in
tech-userlevel for a week.
2003-04-29 03:16:11 +04:00
|
|
|
#if defined(_NETBSD_SOURCE)
|
2005-12-24 22:12:23 +03:00
|
|
|
extern const char *const *sys_signame __RENAME(__sys_signame14);
|
2000-12-19 00:21:26 +03:00
|
|
|
#ifndef __SYS_SIGLIST_DECLARED
|
|
|
|
#define __SYS_SIGLIST_DECLARED
|
|
|
|
/* also in unistd.h */
|
2005-12-24 22:12:23 +03:00
|
|
|
extern const char *const *sys_siglist __RENAME(__sys_siglist14);
|
2000-12-19 00:21:26 +03:00
|
|
|
#endif /* __SYS_SIGLIST_DECLARED */
|
2005-12-24 22:12:23 +03:00
|
|
|
extern const int sys_nsig __RENAME(__sys_nsig14);
|
1994-05-11 07:37:39 +04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
__BEGIN_DECLS
|
2005-02-03 07:39:32 +03:00
|
|
|
int raise(int);
|
2003-07-18 02:39:43 +04:00
|
|
|
#if defined(_POSIX_C_SOURCE) || defined(_XOPEN_SOURCE) || \
|
|
|
|
defined(_NETBSD_SOURCE)
|
2005-02-03 07:39:32 +03:00
|
|
|
int kill(pid_t, int);
|
2005-03-22 23:25:31 +03:00
|
|
|
int __libc_sigaction14(int, const struct sigaction * __restrict,
|
|
|
|
struct sigaction * __restrict);
|
1998-09-12 14:53:26 +04:00
|
|
|
|
2003-07-18 21:54:35 +04:00
|
|
|
#if (_POSIX_C_SOURCE - 0L) >= 199506L || (_XOPEN_SOURCE - 0) >= 500 || \
|
|
|
|
defined(_NETBSD_SOURCE)
|
2006-01-07 23:10:29 +03:00
|
|
|
int pthread_sigmask(int, const sigset_t * __restrict,
|
|
|
|
sigset_t * __restrict);
|
2005-02-03 07:39:32 +03:00
|
|
|
int pthread_kill(pthread_t, int);
|
2006-01-07 23:10:29 +03:00
|
|
|
int __libc_thr_sigsetmask(int, const sigset_t * __restrict,
|
|
|
|
sigset_t * __restrict);
|
2004-12-10 19:40:40 +03:00
|
|
|
#ifndef __LIBPTHREAD_SOURCE__
|
|
|
|
#define pthread_sigmask __libc_thr_sigsetmask
|
|
|
|
#endif /* __LIBPTHREAD_SOURCE__ */
|
2003-07-18 21:54:35 +04:00
|
|
|
#endif
|
2003-01-18 13:32:11 +03:00
|
|
|
|
2005-09-13 05:44:32 +04:00
|
|
|
#ifndef __LIBC12_SOURCE__
|
2005-03-22 23:25:31 +03:00
|
|
|
int sigaction(int, const struct sigaction * __restrict,
|
2005-09-13 05:44:32 +04:00
|
|
|
struct sigaction * __restrict) __RENAME(__sigaction14);
|
2005-02-03 07:39:32 +03:00
|
|
|
int sigaddset(sigset_t *, int) __RENAME(__sigaddset14);
|
|
|
|
int sigdelset(sigset_t *, int) __RENAME(__sigdelset14);
|
|
|
|
int sigemptyset(sigset_t *) __RENAME(__sigemptyset14);
|
|
|
|
int sigfillset(sigset_t *) __RENAME(__sigfillset14);
|
|
|
|
int sigismember(const sigset_t *, int) __RENAME(__sigismember14);
|
|
|
|
int sigpending(sigset_t *) __RENAME(__sigpending14);
|
2005-03-22 23:25:31 +03:00
|
|
|
int sigprocmask(int, const sigset_t * __restrict, sigset_t * __restrict)
|
2005-09-13 05:44:32 +04:00
|
|
|
__RENAME(__sigprocmask14);
|
2005-02-03 07:39:32 +03:00
|
|
|
int sigsuspend(const sigset_t *) __RENAME(__sigsuspend14);
|
1995-01-05 09:01:18 +03:00
|
|
|
|
2005-09-13 05:44:32 +04:00
|
|
|
#if (defined(__GNUC__) && defined(__STDC__)) || defined(_SIGINLINE)
|
2000-12-19 00:21:26 +03:00
|
|
|
#ifndef errno
|
2005-02-03 07:39:32 +03:00
|
|
|
int *__errno(void);
|
2000-12-19 00:21:26 +03:00
|
|
|
#define errno (*__errno())
|
|
|
|
#endif
|
2005-09-13 05:44:32 +04:00
|
|
|
#ifndef _SIGINLINE
|
2005-12-27 20:21:28 +03:00
|
|
|
#define _SIGINLINE extern __inline
|
2005-09-13 05:44:32 +04:00
|
|
|
#endif
|
|
|
|
_SIGINLINE int
|
1998-09-12 15:10:43 +04:00
|
|
|
sigaddset(sigset_t *set, int signo)
|
|
|
|
{
|
1995-05-28 06:53:56 +04:00
|
|
|
if (signo <= 0 || signo >= _NSIG) {
|
1995-01-05 09:01:18 +03:00
|
|
|
errno = 22; /* EINVAL */
|
1998-09-12 15:10:43 +04:00
|
|
|
return (-1);
|
1995-01-05 09:01:18 +03:00
|
|
|
}
|
1998-09-12 14:53:26 +04:00
|
|
|
__sigaddset(set, signo);
|
1995-01-05 09:01:18 +03:00
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
2005-09-13 05:44:32 +04:00
|
|
|
_SIGINLINE int
|
1998-09-12 15:10:43 +04:00
|
|
|
sigdelset(sigset_t *set, int signo)
|
|
|
|
{
|
1995-05-28 06:53:56 +04:00
|
|
|
if (signo <= 0 || signo >= _NSIG) {
|
1995-01-05 09:01:18 +03:00
|
|
|
errno = 22; /* EINVAL */
|
1998-09-12 15:10:43 +04:00
|
|
|
return (-1);
|
1995-01-05 09:01:18 +03:00
|
|
|
}
|
1998-09-12 14:53:26 +04:00
|
|
|
__sigdelset(set, signo);
|
1995-01-05 09:01:18 +03:00
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
2005-09-13 05:44:32 +04:00
|
|
|
_SIGINLINE int
|
1998-09-12 15:10:43 +04:00
|
|
|
sigismember(const sigset_t *set, int signo)
|
|
|
|
{
|
1995-05-28 06:53:56 +04:00
|
|
|
if (signo <= 0 || signo >= _NSIG) {
|
1995-01-05 09:01:18 +03:00
|
|
|
errno = 22; /* EINVAL */
|
1998-09-12 15:10:43 +04:00
|
|
|
return (-1);
|
1995-01-05 09:01:18 +03:00
|
|
|
}
|
1998-09-12 14:53:26 +04:00
|
|
|
return (__sigismember(set, signo));
|
1995-01-05 09:01:18 +03:00
|
|
|
}
|
|
|
|
|
2005-09-13 05:44:32 +04:00
|
|
|
_SIGINLINE int
|
2004-05-24 03:03:24 +04:00
|
|
|
sigemptyset(sigset_t *set)
|
|
|
|
{
|
|
|
|
__sigemptyset(set);
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
2005-09-13 05:44:32 +04:00
|
|
|
_SIGINLINE int
|
2004-05-24 03:03:24 +04:00
|
|
|
sigfillset(sigset_t *set)
|
|
|
|
{
|
|
|
|
__sigfillset(set);
|
|
|
|
return (0);
|
|
|
|
}
|
2005-09-13 05:44:32 +04:00
|
|
|
#endif /* (__GNUC__ && __STDC__) || _LIBC */
|
1998-09-13 08:11:51 +04:00
|
|
|
#endif /* !__LIBC12_SOURCE__ */
|
1995-01-10 04:33:23 +03:00
|
|
|
|
2003-01-16 02:55:41 +03:00
|
|
|
/*
|
2004-07-02 03:46:07 +04:00
|
|
|
* X/Open CAE Specification Issue 4 Version 2
|
2003-01-16 02:55:41 +03:00
|
|
|
*/
|
Add a new feature-test macro, _NETBSD_SOURCE. If this is defined
by the application, all NetBSD interfaces are made visible, even
if some other feature-test macro (like _POSIX_C_SOURCE) is defined.
<sys/featuretest.h> defined _NETBSD_SOURCE if none of _ANSI_SOURCE,
_POSIX_C_SOURCE and _XOPEN_SOURCE is defined, so as to preserve
existing behaviour.
This has two major advantages:
+ Programs that require non-POSIX facilities but define _POSIX_C_SOURCE
can trivially be overruled by putting -D_NETBSD_SOURCE in their CFLAGS.
+ It makes most of the #ifs simpler, in that they're all now ORs of the
various macros, rather than having checks for (!defined(_ANSI_SOURCE) ||
!defined(_POSIX_C_SOURCE) || !defined(_XOPEN_SOURCE)) all over the place.
I've tried not to change the semantics of the headers in any case where
_NETBSD_SOURCE wasn't defined, but there were some places where the
current semantics were clearly mad, and retaining them was harder than
correcting them. In particular, I've mostly normalised things so that
_ANSI_SOURCE gets you the smallest set of stuff, then _POSIX_C_SOURCE,
_XOPEN_SOURCE and _NETBSD_SOURCE in that order.
Tested by building for vax, encouraged by thorpej, and uncontested in
tech-userlevel for a week.
2003-04-29 03:16:11 +04:00
|
|
|
#if (defined(_XOPEN_SOURCE) && defined(_XOPEN_SOURCE_EXTENDED)) || \
|
|
|
|
(_XOPEN_SOURCE - 0) >= 500 || defined(_NETBSD_SOURCE)
|
2005-02-03 07:39:32 +03:00
|
|
|
int killpg(pid_t, int);
|
|
|
|
int siginterrupt(int, int);
|
|
|
|
int sigstack(const struct sigstack *, struct sigstack *);
|
2005-09-13 05:44:32 +04:00
|
|
|
#ifndef __LIBC12_SOURCE__
|
2005-03-22 23:25:31 +03:00
|
|
|
int sigaltstack(const stack_t * __restrict, stack_t * __restrict)
|
2005-09-13 05:44:32 +04:00
|
|
|
__RENAME(__sigaltstack14);
|
1997-11-29 21:38:20 +03:00
|
|
|
#endif
|
2005-02-03 07:39:32 +03:00
|
|
|
int sighold(int);
|
|
|
|
int sigignore(int);
|
|
|
|
int sigpause(int);
|
|
|
|
int sigrelse(int);
|
|
|
|
void (*sigset (int, void (*)(int)))(int);
|
2004-07-02 03:46:07 +04:00
|
|
|
#endif /* _XOPEN_SOURCE_EXTENDED || _XOPEN_SOURCE >= 500 || _NETBSD_SOURCE */
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* X/Open CAE Specification Issue 5; IEEE Std 1003.1b-1993 (POSIX)
|
|
|
|
*/
|
|
|
|
#if (_POSIX_C_SOURCE - 0) >= 199309L || (_XOPEN_SOURCE - 0) >= 500 || \
|
|
|
|
defined(_NETBSD_SOURCE)
|
2005-02-03 07:39:32 +03:00
|
|
|
int sigwait (const sigset_t * __restrict, int * __restrict);
|
|
|
|
int sigwaitinfo(const sigset_t * __restrict, siginfo_t * __restrict);
|
2003-02-16 00:11:47 +03:00
|
|
|
|
|
|
|
struct timespec;
|
2005-02-03 07:39:32 +03:00
|
|
|
int sigtimedwait(const sigset_t * __restrict,
|
|
|
|
siginfo_t * __restrict, const struct timespec * __restrict);
|
|
|
|
int __sigtimedwait(const sigset_t * __restrict,
|
|
|
|
siginfo_t * __restrict, struct timespec * __restrict);
|
Add a new feature-test macro, _NETBSD_SOURCE. If this is defined
by the application, all NetBSD interfaces are made visible, even
if some other feature-test macro (like _POSIX_C_SOURCE) is defined.
<sys/featuretest.h> defined _NETBSD_SOURCE if none of _ANSI_SOURCE,
_POSIX_C_SOURCE and _XOPEN_SOURCE is defined, so as to preserve
existing behaviour.
This has two major advantages:
+ Programs that require non-POSIX facilities but define _POSIX_C_SOURCE
can trivially be overruled by putting -D_NETBSD_SOURCE in their CFLAGS.
+ It makes most of the #ifs simpler, in that they're all now ORs of the
various macros, rather than having checks for (!defined(_ANSI_SOURCE) ||
!defined(_POSIX_C_SOURCE) || !defined(_XOPEN_SOURCE)) all over the place.
I've tried not to change the semantics of the headers in any case where
_NETBSD_SOURCE wasn't defined, but there were some places where the
current semantics were clearly mad, and retaining them was harder than
correcting them. In particular, I've mostly normalised things so that
_ANSI_SOURCE gets you the smallest set of stuff, then _POSIX_C_SOURCE,
_XOPEN_SOURCE and _NETBSD_SOURCE in that order.
Tested by building for vax, encouraged by thorpej, and uncontested in
tech-userlevel for a week.
2003-04-29 03:16:11 +04:00
|
|
|
#endif /* _POSIX_C_SOURCE >= 200112 || _XOPEN_SOURCE_EXTENDED || ... */
|
2003-01-16 02:55:41 +03:00
|
|
|
|
|
|
|
|
Add a new feature-test macro, _NETBSD_SOURCE. If this is defined
by the application, all NetBSD interfaces are made visible, even
if some other feature-test macro (like _POSIX_C_SOURCE) is defined.
<sys/featuretest.h> defined _NETBSD_SOURCE if none of _ANSI_SOURCE,
_POSIX_C_SOURCE and _XOPEN_SOURCE is defined, so as to preserve
existing behaviour.
This has two major advantages:
+ Programs that require non-POSIX facilities but define _POSIX_C_SOURCE
can trivially be overruled by putting -D_NETBSD_SOURCE in their CFLAGS.
+ It makes most of the #ifs simpler, in that they're all now ORs of the
various macros, rather than having checks for (!defined(_ANSI_SOURCE) ||
!defined(_POSIX_C_SOURCE) || !defined(_XOPEN_SOURCE)) all over the place.
I've tried not to change the semantics of the headers in any case where
_NETBSD_SOURCE wasn't defined, but there were some places where the
current semantics were clearly mad, and retaining them was harder than
correcting them. In particular, I've mostly normalised things so that
_ANSI_SOURCE gets you the smallest set of stuff, then _POSIX_C_SOURCE,
_XOPEN_SOURCE and _NETBSD_SOURCE in that order.
Tested by building for vax, encouraged by thorpej, and uncontested in
tech-userlevel for a week.
2003-04-29 03:16:11 +04:00
|
|
|
#if defined(_NETBSD_SOURCE)
|
2000-12-19 00:21:26 +03:00
|
|
|
#ifndef __PSIGNAL_DECLARED
|
|
|
|
#define __PSIGNAL_DECLARED
|
|
|
|
/* also in unistd.h */
|
2005-02-03 07:39:32 +03:00
|
|
|
void psignal(unsigned int, const char *);
|
2000-12-19 00:21:26 +03:00
|
|
|
#endif /* __PSIGNAL_DECLARED */
|
2005-02-03 07:39:32 +03:00
|
|
|
int sigblock(int);
|
|
|
|
int sigsetmask(int);
|
Add a new feature-test macro, _NETBSD_SOURCE. If this is defined
by the application, all NetBSD interfaces are made visible, even
if some other feature-test macro (like _POSIX_C_SOURCE) is defined.
<sys/featuretest.h> defined _NETBSD_SOURCE if none of _ANSI_SOURCE,
_POSIX_C_SOURCE and _XOPEN_SOURCE is defined, so as to preserve
existing behaviour.
This has two major advantages:
+ Programs that require non-POSIX facilities but define _POSIX_C_SOURCE
can trivially be overruled by putting -D_NETBSD_SOURCE in their CFLAGS.
+ It makes most of the #ifs simpler, in that they're all now ORs of the
various macros, rather than having checks for (!defined(_ANSI_SOURCE) ||
!defined(_POSIX_C_SOURCE) || !defined(_XOPEN_SOURCE)) all over the place.
I've tried not to change the semantics of the headers in any case where
_NETBSD_SOURCE wasn't defined, but there were some places where the
current semantics were clearly mad, and retaining them was harder than
correcting them. In particular, I've mostly normalised things so that
_ANSI_SOURCE gets you the smallest set of stuff, then _POSIX_C_SOURCE,
_XOPEN_SOURCE and _NETBSD_SOURCE in that order.
Tested by building for vax, encouraged by thorpej, and uncontested in
tech-userlevel for a week.
2003-04-29 03:16:11 +04:00
|
|
|
#endif /* _NETBSD_SOURCE */
|
1998-05-26 01:55:48 +04:00
|
|
|
|
2003-07-18 02:39:43 +04:00
|
|
|
#endif /* _POSIX_C_SOURCE || _XOPEN_SOURCE || _NETBSD_SOURCE */
|
1994-05-11 07:37:39 +04:00
|
|
|
__END_DECLS
|
|
|
|
|
1998-05-26 01:55:48 +04:00
|
|
|
#endif /* !_SIGNAL_H_ */
|