glibc/sysdeps/unix/sysv/linux/alpha/bits/sigaction.h

75 lines
2.7 KiB
C
Raw Normal View History

1997-06-21 02:49:46 +00:00
/* The proper definitions for Linux/Alpha sigaction.
2000-02-23 05:59:11 +00:00
Copyright (C) 1996, 1997, 1999, 2000 Free Software Foundation, Inc.
This file is part of the GNU C Library.
1997-06-21 02:49:46 +00:00
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-06-21 02:49:46 +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-06-21 02:49:46 +00:00
2001-07-06 04:56:23 +00:00
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, write to the Free
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
02111-1307 USA. */
1997-06-21 02:49:46 +00:00
#ifndef _SIGNAL_H
# error "Never include <bits/sigaction.h> directly; use <signal.h> instead."
#endif
1997-06-21 02:49:46 +00:00
/* Structure describing the action to be taken when a signal arrives. */
struct sigaction
{
/* Signal handler. */
1999-10-12 15:19:54 +00:00
#ifdef __USE_POSIX199309
union
{
/* Used if SA_SIGINFO is not set. */
__sighandler_t sa_handler;
/* Used if SA_SIGINFO is set. */
void (*sa_sigaction) (int, siginfo_t *, void *);
}
__sigaction_handler;
# define sa_handler __sigaction_handler.sa_handler
# define sa_sigaction __sigaction_handler.sa_sigaction
#else
1997-06-21 02:49:46 +00:00
__sighandler_t sa_handler;
1999-10-12 15:19:54 +00:00
#endif
1997-06-21 02:49:46 +00:00
/* Additional set of signals to be blocked. */
__sigset_t sa_mask;
/* Special flags. */
unsigned int sa_flags;
};
/* Bits in `sa_flags'. */
1997-08-14 01:53:36 +00:00
#define SA_NOCLDSTOP 0x00000004 /* Don't send SIGCHLD when children stop. */
2000-02-23 05:59:11 +00:00
#define SA_NOCLDWAIT 0x00000020 /* Don't create zombie on child death. */
1999-10-19 03:07:09 +00:00
#define SA_SIGINFO 0x00000040 /* Invoke signal-catching function with
three arguments instead of one. */
#if defined __USE_UNIX98 || defined __USE_MISC
1998-09-22 12:44:47 +00:00
# define SA_ONSTACK 0x00000001 /* Use signal stack by using `sa_restorer'. */
1997-08-14 01:53:36 +00:00
# define SA_RESTART 0x00000002 /* Restart syscall on signal return. */
1999-10-19 03:07:09 +00:00
# define SA_NODEFER 0x00000008 /* Don't automatically block the signal
1997-08-14 01:53:36 +00:00
when its handler is being executed. */
1999-10-19 03:07:09 +00:00
# define SA_RESETHAND 0x00000010 /* Reset to SIG_DFL on entry to handler. */
#endif
#ifdef __USE_MISC
# define SA_INTERRUPT 0x20000000 /* Historical no-op. */
1997-06-21 02:49:46 +00:00
/* Some aliases for the SA_ constants. */
1999-10-19 03:07:09 +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-06-21 02:49:46 +00:00
#endif
/* Values for the HOW argument to `sigprocmask'. */
1997-08-14 01:53:36 +00:00
#define SIG_BLOCK 1 /* Block signals. */
#define SIG_UNBLOCK 2 /* Unblock signals. */
#define SIG_SETMASK 3 /* Set the set of blocked signals. */