void block_all_signals(void) /* Block 'em Danno! */ { sigset_t all; Sigfillset(&all); Sigprocmask(SIG_BLOCK, &all, NULL); return; }