decouple MAXDSIZ and MAXSSIZ. MAXSSIZ now is 2M; shouldn't need more,

and saves time in exec.
This commit is contained in:
cgd 1993-09-04 00:38:47 +00:00
parent 6a474f29e2
commit 2403a33987
1 changed files with 2 additions and 2 deletions

View File

@ -34,7 +34,7 @@
* SUCH DAMAGE. * SUCH DAMAGE.
* *
* from: @(#)vmparam.h 5.9 (Berkeley) 5/12/91 * from: @(#)vmparam.h 5.9 (Berkeley) 5/12/91
* $Id: vmparam.h,v 1.4 1993/07/13 10:16:40 cgd Exp $ * $Id: vmparam.h,v 1.5 1993/09/04 00:38:47 cgd Exp $
*/ */
@ -73,7 +73,7 @@
#define DFLSSIZ (512*1024) /* initial stack size limit */ #define DFLSSIZ (512*1024) /* initial stack size limit */
#endif #endif
#ifndef MAXSSIZ #ifndef MAXSSIZ
#define MAXSSIZ MAXDSIZ /* max stack size */ #define MAXSSIZ (2*1024*1024) /* max stack size */
#endif #endif
/* /*