mirror of
https://github.com/opnsense/src.git
synced 2026-04-23 07:07:24 -04:00
Believe it or not, I ran into the 32MB stack size limit using a natively
hosted gcc.
This commit is contained in:
parent
e42d7cebec
commit
51ea8b33df
1 changed files with 1 additions and 1 deletions
|
|
@ -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 */
|
||||
|
|
|
|||
Loading…
Reference in a new issue