| 12
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 
 |  
       SIGHUP       1    hangup
       SIGINT       2    interrupt
       SIGQUIT      3    quit
       SIGILL       4    illegal instruction (not reset when caught)
       SIGTRAP      5    trace trap (not reset when caught)
       SIGABRT      6    used by abort
       SIGEMT       7    EMT instruction
       SIGFPE       8    floating point exception
       SIGKILL      9    kill (cannot be caught or ignored)
       SIGBUS      10    bus error
       SIGSEGV     11    segmentation violation
       SIGSYS      12    bad argument to system call
       SIGPIPE     13    write on a pipe with no one to read it
       SIGALRM     14    alarm clock
       SIGTERM     15    software termination signal from kill
       SIGURG      16    urgent condition on IO channel
       SIGSTOP     17    sendable stop signal not from tty
       SIGTSTP     18    stop signal from tty
       SIGCONT     19    continue a stopped process
       SIGCHLD     20    to parent on child stop or exit
       SIGTTIN     21    to readers pgrp upon background tty read
       SIGTTOU     22    like TTIN for output if (tp->t_local<OSTOP)
       SIGPOLL     23    System V name for SIGIO
       SIGXCPU     24    exceeded CPU time limit
       SIGXFSZ     25    exceeded file size limit
       SIGVTALRM   26    virtual time alarm
       SIGPROF     27    profiling time alarm
       SIGWINCH    28    window changed
       SIGLOST     29    resource lost (eg, record-lock lost)
       SIGUSR1     30    user defined signal 1
       SIGUSR2     31    user defined signal 2 | 
Partager