Path: utzoo!mnetor!uunet!husc6!hao!oddjob!gargoyle!ihnp4!homxb!largo From: largo@homxb.UUCP (J.BAKER) Newsgroups: comp.sys.amiga Subject: Re: Multitasking ? A nightmare .... Message-ID: <1272@homxb.UUCP> Date: 28 Dec 87 14:58:32 GMT Organization: AT&T Bell Laboratories, Holmdel Lines: 12 /* A multi-tasking model of comp.sys.amiga and the subject of multi-tasking */ main() { /* flame.c */ not_again: switch (fork()) { case -1: perror("fork error"); break; case 0: printf("Re: flame\n");execl("flame","flame",0); break; default: goto not_again; } } /* Season's Greetings */