1 //===-- LinuxSignals.cpp ----------------------------------------*- C++ -*-===// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is distributed under the University of Illinois Open Source 6 // License. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 10 // C++ Includes 11 // Other libraries and framework includes 12 // Project includes 13 #include "LinuxSignals.h" 14 15 using namespace lldb_private; 16 17 LinuxSignals::LinuxSignals() : UnixSignals() { Reset(); } 18 19 void LinuxSignals::Reset() { 20 m_signals.clear(); 21 // SIGNO NAME SUPPRESS STOP NOTIFY DESCRIPTION ALIAS 22 // ===== =========== ======== ===== ====== 23 // ====================================== ====== 24 AddSignal(1, "SIGHUP", false, true, true, "hangup"); 25 AddSignal(2, "SIGINT", true, true, true, "interrupt"); 26 AddSignal(3, "SIGQUIT", false, true, true, "quit"); 27 AddSignal(4, "SIGILL", false, true, true, "illegal instruction"); 28 AddSignal(5, "SIGTRAP", true, true, true, 29 "trace trap (not reset when caught)"); 30 AddSignal(6, "SIGABRT", false, true, true, "abort()/IOT trap", "SIGIOT"); 31 AddSignal(7, "SIGBUS", false, true, true, "bus error"); 32 AddSignal(8, "SIGFPE", false, true, true, "floating point exception"); 33 AddSignal(9, "SIGKILL", false, true, true, "kill"); 34 AddSignal(10, "SIGUSR1", false, true, true, "user defined signal 1"); 35 AddSignal(11, "SIGSEGV", false, true, true, "segmentation violation"); 36 AddSignal(12, "SIGUSR2", false, true, true, "user defined signal 2"); 37 AddSignal(13, "SIGPIPE", false, true, true, 38 "write to pipe with reading end closed"); 39 AddSignal(14, "SIGALRM", false, false, false, "alarm"); 40 AddSignal(15, "SIGTERM", false, true, true, "termination requested"); 41 AddSignal(16, "SIGSTKFLT", false, true, true, "stack fault"); 42 AddSignal(17, "SIGCHLD", false, false, true, "child status has changed", 43 "SIGCLD"); 44 AddSignal(18, "SIGCONT", false, true, true, "process continue"); 45 AddSignal(19, "SIGSTOP", true, true, true, "process stop"); 46 AddSignal(20, "SIGTSTP", false, true, true, "tty stop"); 47 AddSignal(21, "SIGTTIN", false, true, true, "background tty read"); 48 AddSignal(22, "SIGTTOU", false, true, true, "background tty write"); 49 AddSignal(23, "SIGURG", false, true, true, "urgent data on socket"); 50 AddSignal(24, "SIGXCPU", false, true, true, "CPU resource exceeded"); 51 AddSignal(25, "SIGXFSZ", false, true, true, "file size limit exceeded"); 52 AddSignal(26, "SIGVTALRM", false, true, true, "virtual time alarm"); 53 AddSignal(27, "SIGPROF", false, false, false, "profiling time alarm"); 54 AddSignal(28, "SIGWINCH", false, true, true, "window size changes"); 55 AddSignal(29, "SIGIO", false, true, true, "input/output ready/Pollable event", 56 "SIGPOLL"); 57 AddSignal(30, "SIGPWR", false, true, true, "power failure"); 58 AddSignal(31, "SIGSYS", false, true, true, "invalid system call"); 59 AddSignal(32, "SIG32", false, false, false, 60 "threading library internal signal 1"); 61 AddSignal(33, "SIG33", false, false, false, 62 "threading library internal signal 2"); 63 AddSignal(34, "SIGRTMIN", false, false, false, "real time signal 0"); 64 AddSignal(35, "SIGRTMIN+1", false, false, false, "real time signal 1"); 65 AddSignal(36, "SIGRTMIN+2", false, false, false, "real time signal 2"); 66 AddSignal(37, "SIGRTMIN+3", false, false, false, "real time signal 3"); 67 AddSignal(38, "SIGRTMIN+4", false, false, false, "real time signal 4"); 68 AddSignal(39, "SIGRTMIN+5", false, false, false, "real time signal 5"); 69 AddSignal(40, "SIGRTMIN+6", false, false, false, "real time signal 6"); 70 AddSignal(41, "SIGRTMIN+7", false, false, false, "real time signal 7"); 71 AddSignal(42, "SIGRTMIN+8", false, false, false, "real time signal 8"); 72 AddSignal(43, "SIGRTMIN+9", false, false, false, "real time signal 9"); 73 AddSignal(44, "SIGRTMIN+10", false, false, false, "real time signal 10"); 74 AddSignal(45, "SIGRTMIN+11", false, false, false, "real time signal 11"); 75 AddSignal(46, "SIGRTMIN+12", false, false, false, "real time signal 12"); 76 AddSignal(47, "SIGRTMIN+13", false, false, false, "real time signal 13"); 77 AddSignal(48, "SIGRTMIN+14", false, false, false, "real time signal 14"); 78 AddSignal(49, "SIGRTMIN+15", false, false, false, "real time signal 15"); 79 AddSignal(50, "SIGRTMAX-14", false, false, false, 80 "real time signal 16"); // switching to SIGRTMAX-xxx to match "kill 81 // -l" output 82 AddSignal(51, "SIGRTMAX-13", false, false, false, "real time signal 17"); 83 AddSignal(52, "SIGRTMAX-12", false, false, false, "real time signal 18"); 84 AddSignal(53, "SIGRTMAX-11", false, false, false, "real time signal 19"); 85 AddSignal(54, "SIGRTMAX-10", false, false, false, "real time signal 20"); 86 AddSignal(55, "SIGRTMAX-9", false, false, false, "real time signal 21"); 87 AddSignal(56, "SIGRTMAX-8", false, false, false, "real time signal 22"); 88 AddSignal(57, "SIGRTMAX-7", false, false, false, "real time signal 23"); 89 AddSignal(58, "SIGRTMAX-6", false, false, false, "real time signal 24"); 90 AddSignal(59, "SIGRTMAX-5", false, false, false, "real time signal 25"); 91 AddSignal(60, "SIGRTMAX-4", false, false, false, "real time signal 26"); 92 AddSignal(61, "SIGRTMAX-3", false, false, false, "real time signal 27"); 93 AddSignal(62, "SIGRTMAX-2", false, false, false, "real time signal 28"); 94 AddSignal(63, "SIGRTMAX-1", false, false, false, "real time signal 29"); 95 AddSignal(64, "SIGRTMAX", false, false, false, "real time signal 30"); 96 } 97