Linux Kernel
3.7.1
|
#include <linux/types.h>
Go to the source code of this file.
Data Structures | |
struct | sigaltstack |
Macros | |
#define | SIGHUP 1 |
#define | SIGINT 2 |
#define | SIGQUIT 3 |
#define | SIGILL 4 |
#define | SIGTRAP 5 |
#define | SIGABRT 6 |
#define | SIGIOT 6 |
#define | SIGEMT 7 |
#define | SIGFPE 8 |
#define | SIGKILL 9 |
#define | SIGBUS 10 |
#define | SIGSEGV 11 |
#define | SIGSYS 12 /* Linux doesn't use this */ |
#define | SIGPIPE 13 |
#define | SIGALRM 14 |
#define | SIGTERM 15 |
#define | SIGUSR1 16 |
#define | SIGUSR2 17 |
#define | SIGCHLD 18 |
#define | SIGPWR 19 |
#define | SIGVTALRM 20 |
#define | SIGPROF 21 |
#define | SIGIO 22 |
#define | SIGPOLL SIGIO |
#define | SIGWINCH 23 |
#define | SIGSTOP 24 |
#define | SIGTSTP 25 |
#define | SIGCONT 26 |
#define | SIGTTIN 27 |
#define | SIGTTOU 28 |
#define | SIGURG 29 |
#define | SIGLOST 30 /* Linux doesn't use this either */ |
#define | SIGUNUSED 31 |
#define | SIGRESERVE SIGUNUSED |
#define | SIGXCPU 33 |
#define | SIGXFSZ 34 |
#define | SIGSTKFLT 36 |
#define | SIGRTMIN 37 |
#define | SIGRTMAX _NSIG /* it's 44 under HP/UX */ |
#define | SA_ONSTACK 0x00000001 |
#define | SA_RESETHAND 0x00000004 |
#define | SA_NOCLDSTOP 0x00000008 |
#define | SA_SIGINFO 0x00000010 |
#define | SA_NODEFER 0x00000020 |
#define | SA_RESTART 0x00000040 |
#define | SA_NOCLDWAIT 0x00000080 |
#define | _SA_SIGGFAULT 0x00000100 /* HPUX */ |
#define | SA_NOMASK SA_NODEFER |
#define | SA_ONESHOT SA_RESETHAND |
#define | SA_RESTORER 0x04000000 /* obsolete -- ignored */ |
#define | SS_ONSTACK 1 |
#define | SS_DISABLE 2 |
#define | MINSIGSTKSZ 2048 |
#define | SIGSTKSZ 8192 |
#define | SIG_BLOCK 0 /* for blocking signals */ |
#define | SIG_UNBLOCK 1 /* for unblocking signals */ |
#define | SIG_SETMASK 2 /* for setting the signal mask */ |
#define | SIG_DFL ((__sighandler_t)0) /* default signal handling */ |
#define | SIG_IGN ((__sighandler_t)1) /* ignore signal */ |
#define | SIG_ERR ((__sighandler_t)-1) /* error return from signal */ |
Typedefs | |
typedef void | __signalfn_t (int) |
typedef __signalfn_t __user * | __sighandler_t |
typedef struct sigaltstack | stack_t |
#define SA_NOMASK SA_NODEFER |
#define SA_ONESHOT SA_RESETHAND |
#define SIG_DFL ((__sighandler_t)0) /* default signal handling */ |
#define SIG_ERR ((__sighandler_t)-1) /* error return from signal */ |
#define SIG_IGN ((__sighandler_t)1) /* ignore signal */ |
typedef __signalfn_t __user* __sighandler_t |
typedef struct sigaltstack stack_t |