Believe it or not, I ran into the 32MB stack size limit using a natively

hosted gcc.
This commit is contained in:
Peter Wemm 2002-03-19 11:07:09 +00:00
parent e42d7cebec
commit 51ea8b33df

View File

@ -72,7 +72,7 @@
#define DFLSSIZ (1<<21) /* initial stack size (2M) */
#endif
#ifndef MAXSSIZ
#define MAXSSIZ (1<<25) /* max stack size (32M) */
#define MAXSSIZ (1<<28) /* max stack size (256M) */
#endif
#ifndef SGROWSIZ
#define SGROWSIZ (128UL*1024) /* amount to grow stack */