| Interface status: |
externallyDefinedApi |
|
SIGHUP 1
Description
Hangup.
| Interface status: |
externallyDefinedApi |
|
SIGQUIT 3
Description
Terminal quit signal.
| Interface status: |
externallyDefinedApi |
|
SIGILL 4
Description
Illegal opcode.
| Interface status: |
externallyDefinedApi |
|
SIGTRAP 5
Description
trace trap (not reset when caught)
| Interface status: |
externallyDefinedApi |
|
SIGABRT 6
Description
abort(void)abort(void)
SIGIOT SIGABRT
Description
compatibility
SIGEMT 7
Description
EMT instruction
| Interface status: |
externallyDefinedApi |
|
SIGFPE 8
Description
floating point exception
| Interface status: |
externallyDefinedApi |
|
SIGKILL 9
Description
kill (cannot be caught or ignored)
| Interface status: |
externallyDefinedApi |
|
SIGBUS 10
Description
bus error
| Interface status: |
externallyDefinedApi |
|
SIGSEGV 11
Description
segmentation violation
| Interface status: |
externallyDefinedApi |
|
SIGSYS 12
Description
non-existent system call invoked
| Interface status: |
externallyDefinedApi |
|
SIGALRM 14
Description
alarm clock
| Interface status: |
externallyDefinedApi |
|
SIGTERM 15
Description
software termination signal from kill
| Interface status: |
externallyDefinedApi |
|
SIGURG 16
Description
urgent condition on IO channel
| Interface status: |
externallyDefinedApi |
|
SIGSTOP 17
Description
sendable stop signal not from tty
| Interface status: |
externallyDefinedApi |
|
SIGTSTP 18
Description
stop signal from tty
| Interface status: |
externallyDefinedApi |
|
SIGCONT 19
Description
continue a stopped process
| Interface status: |
externallyDefinedApi |
|
SIGCHLD 20
Description
to parent on child stop or exit
| Interface status: |
externallyDefinedApi |
|
SIGTTIN 21
Description
to readers pgrp upon background tty read
| Interface status: |
externallyDefinedApi |
|
SIGTTOU 22
Description
like TTIN
SIGIO 23
Description
input or output possible signal
| Interface status: |
externallyDefinedApi |
|
SIGXCPU 24
Description
exceeded CPU time limit
| Interface status: |
externallyDefinedApi |
|
SIGXFSZ 25
Description
exceeded file size limit
| Interface status: |
externallyDefinedApi |
|
SIGVTALRM 26
Description
virtual time alarm
| Interface status: |
externallyDefinedApi |
|
SIGPROF 27
Description
profiling time alarm
SIGWINCH 28
Description
window size changes
SIGINFO 29
Description
information request
| Interface status: |
externallyDefinedApi |
|
SIGUSR1 30
Description
user defined signal 1
| Interface status: |
externallyDefinedApi |
|
SIGUSR2 31
Description
user defined signal 2
SIGTHR 32
Description
Thread interrupt.
| Interface status: |
externallyDefinedApi |
|
SIG_DFL ((__sighandler_t *)0)
Description
Request for default signal handling.
| Interface status: |
externallyDefinedApi |
|
SIG_IGN ((__sighandler_t *)1)
Description
Request that signal be ignored.
| Interface status: |
externallyDefinedApi |
|
SIG_ERR ((__sighandler_t *)-1)
Description
Return value from signal() in case of error.
| Interface status: |
externallyDefinedApi |
|
SA_ONSTACK 0x0001
Description
take signal on signal stack
| Interface status: |
externallyDefinedApi |
|
SA_RESTART 0x0002
Description
restart system call on signal return
| Interface status: |
externallyDefinedApi |
|
SA_RESETHAND 0x0004
Description
reset to SIG_DFL when taking signal
| Interface status: |
externallyDefinedApi |
|
SA_NODEFER 0x0010
Description
don't mask the signal we're delivering
| Interface status: |
externallyDefinedApi |
|
SA_NOCLDWAIT 0x0020
Description
don't keep zombies around
| Interface status: |
externallyDefinedApi |
|
SA_SIGINFO 0x0040
Description
signal handler with SA_SIGINFO args
NSIG 32
Description
number of old signals (counting 0)