[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: User Limits
On Tue, 27 Apr 1999, S. Lockwood wrote:
Well I've got some of the limits to work ( like maxlogins ) but for some
reason my memory limits don't work. Here's a good program to test memory
limits ( warning : this will crash your machine if you don't kill it and
you don't have limits working ... )
#!/usr/bin/perl
@x=();
while (true) {
push ( @x,2 );
}
# end
this program basically just eats up memory until it's stopped. As it
stands, I can't make it stop.