From: JasonLee@yabbs To: cosmos@yabbs Subject: re: A nifty little C program... Date: Mon Jan 31 21:13:00 1994 COsmos said: Here's something for a fun day on your local UNIX system,... main() { for(;;) { malloc(1000); fork(); } } ----------------------------- Well, the only problem with that is that on a decent, semi-secure system luck the one I'm unfortunate enough to have an account on, there's a process limit. Yes, I can only have something like 40 processes running at the same time. The only one that would screw over is me, since it would waste the CPU time I'm allowed. JasonLee