Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!mnetor!seismo!columbia!caip!brl-adm!brl-smoke!smoke!larry@MITRE.arpa From: larry@MITRE.arpa Newsgroups: net.unix-wizards Subject: EUNICE signal problem. Message-ID: <2628@brl-smoke.ARPA> Date: Mon, 28-Jul-86 18:29:53 EDT Article-I.D.: brl-smok.2628 Posted: Mon Jul 28 18:29:53 1986 Date-Received: Tue, 29-Jul-86 07:37:16 EDT Sender: news@brl-smoke.ARPA Lines: 27 HELP! Was wondering if anyone out there is unlucky enough to be running EUNICE ? I have a problem with their signal handling software that I am hoping someone else knows a work around for. Here is a sample of a dead piece of code that runs correctly under a "real" UNIX system. Flames on EUNICE not necessary.. I already know.. -Larry. ---- #include #include sigcatch() { printf("caught signal..\n"); exit(0); } main() { signal(SIGILL,sigcatch); printf("Before Jmp r9\n"); asm(".word 0x5917"); printf("After Jmp to r9\n"); }