root/include/linux/signal.h

/* [previous][next][first][last][top][bottom][index][help] */

INCLUDED FROM


   1 #ifndef _LINUX_SIGNAL_H
   2 #define _LINUX_SIGNAL_H
   3 
   4 typedef unsigned int sigset_t;          /* 32 bits */
   5 
   6 #define _NSIG             32
   7 #define NSIG            _NSIG
   8 
   9 #define SIGHUP           1
  10 #define SIGINT           2
  11 #define SIGQUIT          3
  12 #define SIGILL           4
  13 #define SIGTRAP          5
  14 #define SIGABRT          6
  15 #define SIGIOT           6
  16 #define SIGUNUSED        7
  17 #define SIGFPE           8
  18 #define SIGKILL          9
  19 #define SIGUSR1         10
  20 #define SIGSEGV         11
  21 #define SIGUSR2         12
  22 #define SIGPIPE         13
  23 #define SIGALRM         14
  24 #define SIGTERM         15
  25 #define SIGSTKFLT       16
  26 #define SIGCHLD         17
  27 #define SIGCONT         18
  28 #define SIGSTOP         19
  29 #define SIGTSTP         20
  30 #define SIGTTIN         21
  31 #define SIGTTOU         22
  32 
  33 /*
  34  * Most of these aren't used yet (and perhaps never will),
  35  * so they are commented out.
  36  */
  37 
  38 
  39 #define SIGIO           23
  40 #define SIGPOLL         SIGIO
  41 #define SIGURG          SIGIO
  42 #define SIGXCPU         24
  43 #define SIGXFSZ         25
  44 
  45 
  46 #define SIGVTALRM       26
  47 #define SIGPROF         27
  48 
  49 #define SIGWINCH        28
  50 
  51 /*
  52 #define SIGLOST         29
  53 */
  54 
  55 /*
  56  * sa_flags values: SA_STACK is not currently supported, but will allow the
  57  * usage of signal stacks by using the (now obsolete) sa_restorer field in
  58  * the sigaction structure as a stack pointer. This is now possible due to
  59  * the changes in signal handling. LBT 010493.
  60  * SA_RESTART is a no-op, as restarting is the default anyway. Use the
  61  * SA_INTERRUPT flag to get interrupting signals..
  62  */
  63 #define SA_NOCLDSTOP    1
  64 #define SA_STACK        0x08000000
  65 #define SA_RESTART      0x10000000
  66 #define SA_INTERRUPT    0x20000000
  67 #define SA_NOMASK       0x40000000
  68 #define SA_ONESHOT      0x80000000
  69 
  70 #define SIG_BLOCK          0    /* for blocking signals */
  71 #define SIG_UNBLOCK        1    /* for unblocking signals */
  72 #define SIG_SETMASK        2    /* for setting the signal mask */
  73 
  74 /* Type of a signal handler.  */
  75 typedef void (*__sighandler_t)(int);
  76 
  77 #define SIG_DFL ((__sighandler_t)0)     /* default signal handling */
  78 #define SIG_IGN ((__sighandler_t)1)     /* ignore signal */
  79 #define SIG_ERR ((__sighandler_t)-1)    /* error return from signal */
  80 
  81 struct sigaction {
  82         __sighandler_t sa_handler;
  83         sigset_t sa_mask;
  84         int sa_flags;
  85         void (*sa_restorer)(void);
  86 };
  87 
  88 #endif

/* [previous][next][first][last][top][bottom][index][help] */