/* Ignore the SIGXCPU signal (CPU time limit exceeded) in order to make certain system administrators angry :-); sometimes you must hurt them! */ #include void sigtrp_() { signal(SIGXCPU,SIG_IGN); /* in order to make people even more angry you might also like to uncomment the following lines for ignoring filesize limit signals etc etc ... :-) */ /* signal(SIGXFSZ,SIG_IGN); signal(SIGHUP,SIG_IGN); */ }