1997-07-12 23:32:57 +00:00
|
|
|
/* The proper definitions for Linux/MIPS's sigaction.
|
2017-01-01 00:14:16 +00:00
|
|
|
Copyright (C) 1993-2017 Free Software Foundation, Inc.
|
1997-07-12 23:32:57 +00:00
|
|
|
This file is part of the GNU C Library.
|
|
|
|
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
2001-07-06 04:56:23 +00:00
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
1997-07-12 23:32:57 +00:00
|
|
|
|
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2001-07-06 04:56:23 +00:00
|
|
|
Lesser General Public License for more details.
|
1997-07-12 23:32:57 +00:00
|
|
|
|
2001-07-06 04:56:23 +00:00
|
|
|
You should have received a copy of the GNU Lesser General Public
|
2012-03-09 23:56:38 +00:00
|
|
|
License along with the GNU C Library. If not, see
|
|
|
|
<http://www.gnu.org/licenses/>. */
|
1997-07-12 23:32:57 +00:00
|
|
|
|
1997-11-26 04:14:44 +00:00
|
|
|
#ifndef _SIGNAL_H
|
|
|
|
# error "Never include <bits/sigaction.h> directly; use <signal.h> instead."
|
|
|
|
#endif
|
|
|
|
|
1997-07-12 23:32:57 +00:00
|
|
|
/* Structure describing the action to be taken when a signal arrives. */
|
|
|
|
struct sigaction
|
|
|
|
{
|
|
|
|
/* Special flags. */
|
2015-01-02 18:30:32 +00:00
|
|
|
int sa_flags;
|
1997-07-12 23:32:57 +00:00
|
|
|
|
|
|
|
/* Signal handler. */
|
1998-12-31 18:16:52 +00:00
|
|
|
#ifdef __USE_POSIX199309
|
|
|
|
union
|
|
|
|
{
|
|
|
|
/* Used if SA_SIGINFO is not set. */
|
|
|
|
__sighandler_t sa_handler;
|
|
|
|
/* Used if SA_SIGINFO is set. */
|
2000-01-10 11:44:24 +00:00
|
|
|
void (*sa_sigaction) (int, siginfo_t *, void *);
|
1998-12-31 18:16:52 +00:00
|
|
|
}
|
|
|
|
__sigaction_handler;
|
|
|
|
# define sa_handler __sigaction_handler.sa_handler
|
|
|
|
# define sa_sigaction __sigaction_handler.sa_sigaction
|
|
|
|
#else
|
1997-07-12 23:32:57 +00:00
|
|
|
__sighandler_t sa_handler;
|
1998-12-31 18:16:52 +00:00
|
|
|
#endif
|
1997-07-12 23:32:57 +00:00
|
|
|
/* Additional set of signals to be blocked. */
|
|
|
|
__sigset_t sa_mask;
|
|
|
|
|
|
|
|
/* The ABI says here are two unused ints following. */
|
|
|
|
/* Restore handler. */
|
2000-01-10 11:44:24 +00:00
|
|
|
void (*sa_restorer) (void);
|
1997-07-12 23:32:57 +00:00
|
|
|
|
2003-03-25 21:51:53 +00:00
|
|
|
#if _MIPS_SZPTR < 64
|
1997-07-12 23:32:57 +00:00
|
|
|
int sa_resv[1];
|
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Bits in `sa_flags'. */
|
1999-08-28 22:14:27 +00:00
|
|
|
/* Please note that some Linux kernels versions use different values for these
|
|
|
|
flags which is a bug in those kernel versions. */
|
|
|
|
#define SA_NOCLDSTOP 0x00000001 /* Don't send SIGCHLD when children stop. */
|
2000-02-23 05:59:11 +00:00
|
|
|
#define SA_NOCLDWAIT 0x00010000 /* Don't create zombie on child death. */
|
1998-12-31 18:16:52 +00:00
|
|
|
#define SA_SIGINFO 0x00000008 /* Invoke signal-catching function with
|
|
|
|
three arguments instead of one. */
|
|
|
|
#if defined __USE_UNIX98 || defined __USE_MISC
|
1999-08-28 22:14:27 +00:00
|
|
|
# define SA_ONSTACK 0x08000000 /* Use signal stack by using `sa_restorer'. */
|
2010-01-11 13:28:37 +00:00
|
|
|
#endif
|
2014-02-21 21:45:26 +00:00
|
|
|
#if defined __USE_UNIX98 || defined __USE_XOPEN2K8
|
1999-08-28 22:14:27 +00:00
|
|
|
# define SA_RESETHAND 0x80000000 /* Reset to SIG_DFL on entry to handler. */
|
|
|
|
# define SA_RESTART 0x10000000 /* Restart syscall on signal return. */
|
|
|
|
# define SA_NODEFER 0x40000000 /* Don't automatically block the signal when
|
1997-08-14 01:53:36 +00:00
|
|
|
its handler is being executed. */
|
1998-12-31 18:16:52 +00:00
|
|
|
#endif
|
|
|
|
#ifdef __USE_MISC
|
1999-08-28 22:14:27 +00:00
|
|
|
# define SA_INTERRUPT 0x20000000 /* Historical no-op. */
|
1997-07-12 23:32:57 +00:00
|
|
|
|
|
|
|
/* Some aliases for the SA_ constants. */
|
1997-08-14 01:53:36 +00:00
|
|
|
# define SA_NOMASK SA_NODEFER
|
|
|
|
# define SA_ONESHOT SA_RESETHAND
|
1998-09-22 12:44:47 +00:00
|
|
|
# define SA_STACK SA_ONSTACK
|
1997-07-12 23:32:57 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Values for the HOW argument to `sigprocmask'. */
|
1997-08-14 01:53:36 +00:00
|
|
|
#define SIG_NOP 0 /* 0 is unused to catch errors */
|
|
|
|
#define SIG_BLOCK 1 /* Block signals. */
|
|
|
|
#define SIG_UNBLOCK 2 /* Unblock signals. */
|
|
|
|
#define SIG_SETMASK 3 /* Set the set of blocked signals. */
|
1998-12-31 18:16:52 +00:00
|
|
|
#ifdef __USE_MISC
|
|
|
|
# define SIG_SETMASK32 256 /* Goodie from SGI for BSD compatibility:
|
1997-07-12 23:32:57 +00:00
|
|
|
set only the low 32 bit of the sigset. */
|
1998-12-31 18:16:52 +00:00
|
|
|
#endif
|