Home | History | Annotate | Download | only in Enquire

Lines Matching defs:signal

31 //#define NO_SIG  1   // Compiler doesn't support signal() or setjmp/longjmp()

222 signal(), or setjmp/longjmp() -DNO_SIG
286 You may possibly need to add some calls to signal() for other sorts of
323 are catchable with signal().
326 "Unexpected signal at point x"), this often turns out to be a bug in the
493 Added FPE signal checks: thanks Leonid A. Broukhis
498 Added signal catching to the malloc part
614 #include <signal.h> /* if this fails, define NO_SIG */
618 //#include <signal.h> /* if this fails, define NO_SIG */
730 #ifdef NO_SIG /* There's no signal(), or setjmp/longjmp() */
741 Void signal(int i, void (*p)()) {}
747 signal(sig, overflow);
753 signal(sig, address);
932 /* The program has received a signal where it wasn't expecting one */
936 printf("*** Unexpected signal at point %d\n", place);
1042 signal(sig, trap2);
1049 signal(SIGFPE, overflow);
1052 signal(SIGOVER, overflow);
1055 signal(SIGBUS, address);
1058 signal(SIGSEGV, address);
1125 Vprintf("%sCompiled without signal(): %s%s\n",
3195 signal(SIGFPE, trap1);
3207 Vprintf("%sFP signal handlers return safely%s\n",
3212 Vprintf("%sBEWARE! FP signal handlers can NOT return%s\n",