Signal Range?

Hi Community!!!

The Signal range of Neutrino is:

1 … 57---------- 57 POSIX signals (including traditional UNIX signals)
41 … 56--------- 16 POSIX realtime signals (SIGRTMIN to SIGRTMAX)
57 … 64--------- Eight special-purpose QNX Neutrino signals

as far as good but I can’t find a chart of QNX4.

How can I find a Signal range of ONX4 ?

Thank you.

/usr/include/signal.h

Thank you mario

#define SIGHUP 1 /* hangup /
#define SIGINT 2 /
interrupt /
#define SIGQUIT 3 /
quit /
#define SIGILL 4 /
illegal instruction (not reset when caught) /
#define SIGTRAP 5 /
trace trap (not reset when caught) /
#define SIGIOT 6 /
IOT instruction /
#define SIGABRT 6 /
used by abort /
#define SIGEMT 7 /
EMT instruction /
#define SIGFPE 8 /
floating point exception /
#define SIGKILL 9 /
kill (cannot be caught or ignored) /
#define SIGBUS 10 /
bus error /
#define SIGSEGV 11 /
segmentation violation /
#define SIGSYS 12 /
bad argument to system call /
#define SIGPIPE 13 /
write on pipe with no reader /
#define SIGALRM 14 /
real-time alarm clock /
#define SIGTERM 15 /
software termination signal from kill /
#define SIGUSR1 16 /
user defined signal 1 /
#define SIGUSR2 17 /
user defined signal 2 /
#define SIGCHLD 18 /
death of child /
#define SIGPWR 19 /
power-fail restart /
#define SIGWINCH 20 /
window change /
#define SIGURG 21 /
urgent condition on I/O channel /
#define SIGPOLL 22 /
System V name for SIGIO /
#define SIGIO 22 /
Asynchronus I/O /
#define SIGSTOP 23 /
sendable stop signal not from tty /
#define SIGTSTP 24 /
stop signal from tty /
#define SIGCONT 25 /
continue a stopped process /
#define SIGTTIN 26 /
attempted background tty read /
#define SIGTTOU 27 /
attempted background tty write /
#define SIGDEV 28 /
Dev event */

#define _SIGMAX 32
#define _SIGMIN 1

it seems to be 32 are this the traditional UNIX signals???

Thank you !! :slight_smile:

Yes it’s pretty much the norm.