1#if NOW == SIGILL
2P (ILL_ILLOPC, N_("Illegal opcode"))
3P (ILL_ILLOPN, N_("Illegal operand"))
4P (ILL_ILLADR, N_("Illegal addressing mode"))
5P (ILL_ILLTRP, N_("Illegal trap"))
6P (ILL_PRVOPC, N_("Privileged opcode"))
7P (ILL_PRVREG, N_("Privileged register"))
8P (ILL_COPROC, N_("Coprocessor error"))
9P (ILL_BADSTK, N_("Internal stack error"))
10#endif
11#if NOW == SIGFPE
12P (FPE_INTDIV, N_("Integer divide by zero"))
13P (FPE_INTOVF, N_("Integer overflow"))
14P (FPE_FLTDIV, N_("Floating-point divide by zero"))
15P (FPE_FLTOVF, N_("Floating-point overflow"))
16P (FPE_FLTUND, N_("Floating-point underflow"))
17P (FPE_FLTRES, N_("Floating-poing inexact result"))
18P (FPE_FLTINV, N_("Invalid floating-point operation"))
19P (FPE_FLTSUB, N_("Subscript out of range"))
20#endif
21#if NOW == SIGSEGV
22P (SEGV_MAPERR, N_("Address not mapped to object"))
23P (SEGV_ACCERR, N_("Invalid permissions for mapped object"))
24#endif
25#if NOW == SIGBUS
26P (BUS_ADRALN, N_("Invalid address alignment"))
27P (BUS_ADRERR, N_("Nonexisting physical address"))
28P (BUS_OBJERR, N_("Object-specific hardware error"))
29#endif
30#if NOW == SIGTRAP
31P (TRAP_BRKPT, N_("Process breakpoint"))
32P (TRAP_TRACE, N_("Process trace trap"))
33#endif
34#if NOW == SIGCLD
35P (CLD_EXITED, N_("Child has exited"))
36P (CLD_KILLED, N_("Child has terminated abnormally and did not create a core file"))
37P (CLD_DUMPED, N_("Child has terminated abnormally and created a core file"))
38P (CLD_TRAPPED, N_("Traced child has trapped"))
39P (CLD_STOPPED, N_("Child has stopped"))
40P (CLD_CONTINUED, N_("Stopped child has continued"))
41#endif
42#if NOW == SIGPOLL
43P (POLL_IN, N_("Data input available"))
44P (POLL_OUT, N_("Output buffers available"))
45P (POLL_MSG, N_("Input message available"))
46P (POLL_ERR, N_("I/O error"))
47P (POLL_PRI, N_("High priority input available"))
48P (POLL_HUP, N_("Device disconnected"))
49#endif
50#undef P
51