Changed MAXSSIZ from MAXDSIZ to 2MB

This commit is contained in:
Rodney W. Grimes 1993-08-28 09:19:01 +00:00
parent 990baf3006
commit 8373b81238
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=348
2 changed files with 2 additions and 2 deletions

View File

@ -72,7 +72,7 @@
#define DFLSSIZ (512*1024) /* initial stack size limit */
#endif
#ifndef MAXSSIZ
#define MAXSSIZ MAXDSIZ /* max stack size */
#define MAXSSIZ (2*1024*1024) /* max stack size */
#endif
/*

View File

@ -72,7 +72,7 @@
#define DFLSSIZ (512*1024) /* initial stack size limit */
#endif
#ifndef MAXSSIZ
#define MAXSSIZ MAXDSIZ /* max stack size */
#define MAXSSIZ (2*1024*1024) /* max stack size */
#endif
/*