Main Page
Namespaces
Classes
Files
Examples
File List
File Members
signals.h
Go to the documentation of this file.
1
#pragma once
2
3
namespace
GDBServerFoundation
4
{
6
enum
UnixSignal
7
{
8
SIGHUP
= 1,
9
SIGINT
= 2,
10
SIGQUIT
= 3,
11
SIGILL
= 4,
12
SIGTRAP
= 5,
13
SIGABRT
= 6,
14
SIGIOT
= 6,
15
SIGBUS
= 7,
16
SIGFPE
= 8,
17
SIGKILL
= 9,
18
SIGUSR1
= 10,
19
SIGSEGV
= 11,
20
SIGUSR2
= 12,
21
SIGPIPE
= 13,
22
SIGALRM
= 14,
23
SIGTERM
= 15,
24
SIGSTKFLT
= 16,
25
SIGCHLD
= 17,
26
SIGCONT
= 18,
27
SIGSTOP
= 19,
28
SIGTSTP
= 20,
29
SIGTTIN
= 21,
30
SIGTTOU
= 22,
31
SIGURG
= 23,
32
SIGXCPU
= 24,
33
SIGXFSZ
= 25,
34
SIGVTALRM
= 26,
35
SIGPROF
= 27,
36
SIGWINCH
= 28,
37
SIGIO
= 29,
38
SIGPWR
= 30,
39
SIGSYS
= 31,
40
SIGUNUSED
= 31,
41
};
42
}