mirror of
https://github.com/corda/corda.git
synced 2025-01-22 12:28:11 +00:00
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:
parent
12ab935597
commit
6e79e98d18
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user