OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:AddSignal
(Results
1 - 3
of
3
) sorted by null
/external/lldb/source/Target/
UnixSignals.cpp
64
AddSignal
(1, "SIGHUP", "HUP", false, true , true , "hangup");
65
AddSignal
(2, "SIGINT", "INT", true , true , true , "interrupt");
66
AddSignal
(3, "SIGQUIT", "QUIT", false, true , true , "quit");
67
AddSignal
(4, "SIGILL", "ILL", false, true , true , "illegal instruction");
68
AddSignal
(5, "SIGTRAP", "TRAP", true , true , true , "trace trap (not reset when caught)");
69
AddSignal
(6, "SIGABRT", "ABRT", false, true , true , "abort()");
70
AddSignal
(7, "SIGEMT", "EMT", false, true , true , "pollable event");
71
AddSignal
(8, "SIGFPE", "FPE", false, true , true , "floating point exception");
72
AddSignal
(9, "SIGKILL", "KILL", false, true , true , "kill");
73
AddSignal
(10, "SIGBUS", "BUS", false, true , true , "bus error")
[
all
...]
/external/lldb/include/lldb/Target/
UnixSignals.h
98
AddSignal
(int signo,
/external/lldb/source/Plugins/Process/Linux/
LinuxSignals.cpp
29
#define
ADDSIGNAL
(S, SUPPRESS, STOP, NOTIFY, DESCRIPTION) \
30
AddSignal
(SIG ## S, "SIG" #S, #S, SUPPRESS, STOP, NOTIFY, DESCRIPTION)
32
ADDSIGNAL
(HUP, false, true, true, "hangup");
33
ADDSIGNAL
(INT, true, true, true, "interrupt");
34
ADDSIGNAL
(QUIT, false, true, true, "quit");
35
ADDSIGNAL
(ILL, false, true, true, "illegal instruction");
36
ADDSIGNAL
(TRAP, true, true, true, "trace trap (not reset when caught)");
37
ADDSIGNAL
(ABRT, false, true, true, "abort");
38
ADDSIGNAL
(IOT, false, true, true, "abort");
39
ADDSIGNAL
(BUS, false, true, true, "bus error")
[
all
...]
Completed in 821 milliseconds