From: utzoo!decvax!cca!chris.umcp-cs@Udel-Relay@sri-unix Newsgroups: net.unix-wizards Title: Re: I/O Error in Push, amt. of swap space Article-I.D.: sri-unix.4210 Posted: Fri Nov 19 05:22:31 1982 Received: Sat Nov 20 09:18:29 1982 From: Chris Torek Date: 16 Nov 82 03:36:14 EST (Tue) Speaking of which, has anyone ever tried the following: #include main () { register i; for (i = 1000000; i; i /= 10) while (sbrk (i) != -1) ; kill (0,SIGTSTP); } % a.out [1] + Stopped a.out % a.out [2] + Stopped a.out % a.out [3] + Stopped a.out % a.out ... After about six of them our paging area completely fills up and no one can run anything. (Fortunately "kill" is built into the csh.) You get a message like: /usr/ucb/mail: Not enough core. - Chris