Searched refs:ADDSIGNAL (Results 1 – 1 of 1) sorted by relevance
/external/lldb/source/Plugins/Process/Linux/ |
D | LinuxSignals.cpp | 29 #define ADDSIGNAL(S, SUPPRESS, STOP, NOTIFY, DESCRIPTION) \ in Reset() macro 32 ADDSIGNAL(HUP, false, true, true, "hangup"); in Reset() 33 ADDSIGNAL(INT, true, true, true, "interrupt"); in Reset() 34 ADDSIGNAL(QUIT, false, true, true, "quit"); in Reset() 35 ADDSIGNAL(ILL, false, true, true, "illegal instruction"); in Reset() 36 ADDSIGNAL(TRAP, true, true, true, "trace trap (not reset when caught)"); in Reset() 37 ADDSIGNAL(ABRT, false, true, true, "abort"); in Reset() 38 ADDSIGNAL(IOT, false, true, true, "abort"); in Reset() 39 ADDSIGNAL(BUS, false, true, true, "bus error"); in Reset() 40 ADDSIGNAL(FPE, false, true, true, "floating point exception"); in Reset() [all …]
|