Module: Ragweed::Wraposx::Signal Deprecated
- Defined in:
- lib/ragweed/wraposx/constants.rb
Overview
-
Just use ::Signal
the Ruby module Signal also has this information. in reality, that is a better source since it’s based on the signals available at the time ruby was compiled.
Constant Summary collapse
- SIGHUP =
hangup
1
- SIGINT =
interrupt
2
- SIGQUIT =
quit
3
- SIGILL =
illegal instruction (not reset when caught)
4
- SIGTRAP =
trace trap (not reset when caught)
5
- SIGABRT =
abort()
6
- SIGPOLL =
if (defined(_POSIX_C_SOURCE) && !defined(_DARWIN_C_SOURCE))
7
- SIGIOT =
else /* (!_POSIX_C_SOURCE || _DARWIN_C_SOURCE) */
SIGABRT
- SIGEMT =
compatibility
7
- SIGFPE =
endif /* (!_POSIX_C_SOURCE || _DARWIN_C_SOURCE) */
8
- SIGKILL =
floating point exception
9
- SIGBUS =
kill (cannot be caught or ignored)
10
- SIGSEGV =
bus error
11
- SIGSYS =
segmentation violation
12
- SIGPIPE =
bad argument to system call
13
- SIGALRM =
write on a pipe with no one to read it
14
- SIGTERM =
alarm clock
15
- SIGURG =
software termination signal from kill
16
- SIGSTOP =
urgent condition on IO channel
17
- SIGTSTP =
sendable stop signal not from tty
18
- SIGCONT =
stop signal from tty
19
- SIGCHLD =
continue a stopped process
20
- SIGTTIN =
to parent on child stop or exit
21
- SIGTTOU =
to readers pgrp upon background tty read
22
- SIGIO =
if (!defined(_POSIX_C_SOURCE) || defined(_DARWIN_C_SOURCE))
23
- SIGXCPU =
endif
24
- SIGXFSZ =
exceeded CPU time limit
25
- SIGVTALRM =
exceeded file size limit
26
- SIGPROF =
virtual time alarm
27
- SIGWINCH =
if (!defined(_POSIX_C_SOURCE) || defined(_DARWIN_C_SOURCE))
28
- SIGINFO =
window size changes
29
- SIGUSR1 =
endif
30
- SIGUSR2 =
user defined signal 1
31