Branch: Tag:

1998-09-29

1998-09-29 19:32:24 by Henrik Grubbström (Grubba) <grubba@grubba.org>

Increased the default fd max limit to 131072 (was 16384).
Should be enough for a couple of years more... :-)

Rev: src/configure.in:1.242

1: - AC_REVISION("$Id: configure.in,v 1.241 1998/09/27 19:42:32 grubba Exp $") + AC_REVISION("$Id: configure.in,v 1.242 1998/09/29 19:32:24 grubba Exp $")   AC_INIT(interpret.c)   AC_CONFIG_HEADER(machine.h)   
2176:    }else{    if(lim.rlim_max == RLIM_INFINITY)    { -  limit=16384; /* noone needs more */ +  limit=131072; /* Noone needs more :-) */    }else{    limit=lim.rlim_max; -  if(limit > 16384) limit=16384; +  if(limit > 131072) limit=131072;    }    }   #else