2003-09-13 00:27:50 +04:00
|
|
|
/* $NetBSD: signal.h,v 1.36 2003/09/12 20:27:50 christos 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)
|
1998-11-30 23:36:27 +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 */
|
1998-11-30 23:36:27 +03:00
|
|
|
extern __const char *__const *sys_siglist __RENAME(__sys_siglist14);
|
2000-12-19 00:21:26 +03:00
|
|
|
#endif /* __SYS_SIGLIST_DECLARED */
|
1998-11-30 23:36:27 +03:00
|
|
|
extern __const int sys_nsig __RENAME(__sys_nsig14);
|
1994-05-11 07:37:39 +04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
__BEGIN_DECLS
|
|
|
|
int raise __P((int));
|
2003-07-18 02:39:43 +04:00
|
|
|
#if defined(_POSIX_C_SOURCE) || defined(_XOPEN_SOURCE) || \
|
|
|
|
defined(_NETBSD_SOURCE)
|
1994-05-11 07:37:39 +04:00
|
|
|
int kill __P((pid_t, int));
|
2003-09-13 00:27:50 +04:00
|
|
|
int __libc_sigaction14 __P((int, const struct sigaction *,
|
|
|
|
struct sigaction *));
|
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)
|
2003-01-18 13:32:11 +03:00
|
|
|
int pthread_sigmask __P((int, const sigset_t *, sigset_t *));
|
2003-07-18 03:04:43 +04:00
|
|
|
int pthread_kill __P((pthread_t, int));
|
2003-07-18 21:54:35 +04:00
|
|
|
#endif
|
2003-01-18 13:32:11 +03:00
|
|
|
|
1998-09-13 08:11:51 +04:00
|
|
|
#ifdef __LIBC12_SOURCE__
|
1998-09-12 14:53:26 +04:00
|
|
|
int sigaction __P((int, const struct sigaction13 *, struct sigaction13 *));
|
|
|
|
int __sigaction14 __P((int, const struct sigaction *, struct sigaction *));
|
|
|
|
int sigaddset __P((sigset13_t *, int));
|
|
|
|
int __sigaddset14 __P((sigset_t *, int));
|
|
|
|
int sigdelset __P((sigset13_t *, int));
|
|
|
|
int __sigdelset14 __P((sigset_t *, int));
|
|
|
|
int sigemptyset __P((sigset13_t *));
|
|
|
|
int __sigemptyset14 __P((sigset_t *));
|
|
|
|
int sigfillset __P((sigset13_t *));
|
|
|
|
int __sigfillset14 __P((sigset_t *));
|
|
|
|
int sigismember __P((const sigset13_t *, int));
|
|
|
|
int __sigismember14 __P((const sigset_t *, int));
|
|
|
|
int sigpending __P((sigset13_t *));
|
|
|
|
int __sigpending14 __P((sigset_t *));
|
|
|
|
int sigprocmask __P((int, const sigset13_t *, sigset13_t *));
|
|
|
|
int __sigprocmask14 __P((int, const sigset_t *, sigset_t *));
|
|
|
|
int sigsuspend __P((const sigset13_t *));
|
|
|
|
int __sigsuspend14 __P((const sigset_t *));
|
1998-09-13 08:11:51 +04:00
|
|
|
#else /* !__LIBC12_SOURCE__ */
|
1998-09-12 14:53:26 +04:00
|
|
|
int sigaction __P((int, const struct sigaction *, struct sigaction *)) __RENAME(__sigaction14);
|
|
|
|
int sigaddset __P((sigset_t *, int)) __RENAME(__sigaddset14);
|
|
|
|
int sigdelset __P((sigset_t *, int)) __RENAME(__sigdelset14);
|
|
|
|
int sigemptyset __P((sigset_t *)) __RENAME(__sigemptyset14);
|
|
|
|
int sigfillset __P((sigset_t *)) __RENAME(__sigfillset14);
|
|
|
|
int sigismember __P((const sigset_t *, int)) __RENAME(__sigismember14);
|
|
|
|
int sigpending __P((sigset_t *)) __RENAME(__sigpending14);
|
|
|
|
int sigprocmask __P((int, const sigset_t *, sigset_t *)) __RENAME(__sigprocmask14);
|
|
|
|
int sigsuspend __P((const sigset_t *)) __RENAME(__sigsuspend14);
|
1995-01-05 09:01:18 +03:00
|
|
|
|
|
|
|
#if defined(__GNUC__) && defined(__STDC__)
|
2000-12-19 00:21:26 +03:00
|
|
|
#ifndef errno
|
|
|
|
int *__errno __P((void));
|
|
|
|
#define errno (*__errno())
|
|
|
|
#endif
|
1998-09-12 15:10:43 +04:00
|
|
|
extern __inline int
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
1998-09-12 15:10:43 +04:00
|
|
|
extern __inline int
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
1998-09-12 15:10:43 +04:00
|
|
|
extern __inline int
|
|
|
|
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
|
|
|
}
|
1998-09-12 14:53:26 +04:00
|
|
|
#endif /* __GNUC__ && __STDC__ */
|
1995-01-05 09:01:18 +03:00
|
|
|
|
|
|
|
/* List definitions after function declarations, or Reiser cpp gets upset. */
|
1998-12-09 15:50:47 +03:00
|
|
|
#define sigemptyset(set) (__sigemptyset(set), /*LINTED*/0)
|
|
|
|
#define sigfillset(set) (__sigfillset(set), /*LINTED*/ 0)
|
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
|
|
|
/*
|
|
|
|
* X/Open CAE Specification Issue 5 Version 2
|
|
|
|
*/
|
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)
|
1994-05-11 07:37:39 +04:00
|
|
|
int killpg __P((pid_t, int));
|
|
|
|
int siginterrupt __P((int, int));
|
|
|
|
int sigstack __P((const struct sigstack *, struct sigstack *));
|
1997-11-29 21:38:20 +03:00
|
|
|
#ifdef __LIBC12_SOURCE__
|
|
|
|
int sigaltstack __P((const struct sigaltstack13 *, struct sigaltstack13 *));
|
|
|
|
int __sigaltstack14 __P((const stack_t *, stack_t *));
|
|
|
|
#else
|
|
|
|
int sigaltstack __P((const stack_t *, stack_t *)) __RENAME(__sigaltstack14);
|
|
|
|
#endif
|
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 /* _XOPEN_SOURCE_EXTENDED || _XOPEN_SOURCE >= 500 || _NETBSD_SOURCE */
|
1998-05-26 01:55:48 +04:00
|
|
|
|
2003-01-16 02:55:41 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* X/Open CAE Specification Issue 5 Version 2; IEEE Std 1003.1-2001 (POSIX)
|
|
|
|
*/
|
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 (_POSIX_C_SOURCE - 0) >= 200112L || \
|
2003-01-16 02:55:41 +03:00
|
|
|
(defined(_XOPEN_SOURCE) && defined(_XOPEN_SOURCE_EXTENDED)) || \
|
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
|
|
|
(_XOPEN_SOURCE - 0) >= 500 || defined(_NETBSD_SOURCE)
|
2003-01-16 02:55:41 +03:00
|
|
|
int sighold __P((int));
|
|
|
|
int sigignore __P((int));
|
|
|
|
int sigpause __P((int));
|
|
|
|
int sigrelse __P((int));
|
|
|
|
void (*sigset __P((int, void (*)(int)))) __P((int));
|
2003-02-16 00:11:47 +03:00
|
|
|
int sigwait __P((const sigset_t * __restrict, int * __restrict));
|
|
|
|
int sigwaitinfo __P((const sigset_t * __restrict, siginfo_t * __restrict));
|
|
|
|
|
|
|
|
struct timespec;
|
|
|
|
int sigtimedwait __P((const sigset_t * __restrict,
|
|
|
|
siginfo_t * __restrict, const struct timespec * __restrict));
|
|
|
|
int __sigtimedwait __P((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 */
|
1998-05-26 01:55:48 +04:00
|
|
|
void psignal __P((unsigned int, const char *));
|
2000-12-19 00:21:26 +03:00
|
|
|
#endif /* __PSIGNAL_DECLARED */
|
1998-05-26 01:55:48 +04:00
|
|
|
int sigblock __P((int));
|
1998-09-13 08:11:51 +04:00
|
|
|
#ifdef __LIBC12_SOURCE__
|
1998-09-12 14:53:26 +04:00
|
|
|
int sigreturn __P((struct sigcontext13 *));
|
2003-09-11 18:04:50 +04:00
|
|
|
#ifndef __HAVE_SIGINFO
|
1998-09-12 14:53:26 +04:00
|
|
|
int __sigreturn14 __P((struct sigcontext *));
|
2003-09-11 17:12:52 +04:00
|
|
|
#endif
|
1998-09-12 14:53:26 +04:00
|
|
|
#else
|
2003-09-11 18:04:50 +04:00
|
|
|
#ifndef __HAVE_SIGINFO
|
1998-09-12 14:53:26 +04:00
|
|
|
int sigreturn __P((struct sigcontext *)) __RENAME(__sigreturn14);
|
|
|
|
#endif
|
2003-09-11 17:12:52 +04:00
|
|
|
#endif
|
1998-05-26 01:55:48 +04:00
|
|
|
int sigsetmask __P((int));
|
|
|
|
int sigvec __P((int, struct sigvec *, struct sigvec *));
|
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_ */
|