increase default stack size to 128KB

64KB was too small for many apps.  SWT in particular can use a lot of
stack space, especially on 64-bit systems.
This commit is contained in:
Joel Dice 2011-02-07 11:45:39 -07:00
parent 12ab935597
commit 6e79e98d18

View File

@ -106,7 +106,7 @@ const unsigned ThreadBackupHeapSizeInBytes = 2 * 1024;
const unsigned ThreadBackupHeapSizeInWords
= ThreadBackupHeapSizeInBytes / BytesPerWord;
const unsigned StackSizeInBytes = 64 * 1024;
const unsigned StackSizeInBytes = 128 * 1024;
const unsigned StackSizeInWords = StackSizeInBytes / BytesPerWord;
const unsigned ThreadHeapPoolSize = 64;