Lines Matching refs:SIGNAME
73 const char *SIGNAME[64]; local
76 SIGNAME[0] = "Unknown signal";
78 SIGNAME[SIGABRT] = "Abort";
81 SIGNAME[SIGALRM] = "Alarm";
84 SIGNAME[SIGBUS] = "BUS: Bus Error, possibly illegal memory access";
87 SIGNAME[SIGCHLD] = "CHLD";
90 SIGNAME[SIGCONT] = "CONT";
93 SIGNAME[SIGFPE] = "FPE: Floating Point Exception,probably divide by zero";
96 …SIGNAME[SIGHUP] = "Hang up: Some other process (or the batch system) has told this process to end";
99 SIGNAME[SIGILL] = "Illegal instruction: Likely due to memory corruption";
102 SIGNAME[SIGINT] = "Interrupt";
105 SIGNAME[SIGKILL] = "Kill: Some other process (or the batch system) has told this process to end";
108 SIGNAME[SIGPIPE] = "Broken Pipe: Likely while reading or writing to a socket";
111 SIGNAME[SIGQUIT] = "Quit: Some other process (or the batch system) has told this process to end";
114 SIGNAME[SIGSEGV] = "SEGV: Segmentation Violation, probably memory access out of range";
117 SIGNAME[SIGSYS] = "SYS";
120 SIGNAME[SIGTERM] = "Terminate: Some process (or the batch system) has told this process to end";
123 SIGNAME[SIGTRAP] = "TRAP";
126 SIGNAME[SIGTSTP] = "TSTP";
129 SIGNAME[SIGURG] = "URG";
132 SIGNAME[SIGUSR1] = "User 1";
135 SIGNAME[SIGUSR2] = "User 2";
141 …if (sig >= 0 && sig <= 20) (void)(*PetscErrorPrintf)("Caught signal number %d %s\n", sig, SIGNAME[…