Add thread stack size (-Xss) option (#489)

This commit is contained in:
Jeff Smits
2021-10-19 11:44:22 +02:00
committed by GitHub
parent 35a5a37c89
commit adbe953463
4 changed files with 17 additions and 0 deletions

View File

@@ -210,6 +210,10 @@ public enum Environment {
* The <code>-Xmx</code> value to pass to the daemon
*/
MVND_MAX_HEAP_SIZE("mvnd.maxHeapSize", null, "2G", OptionType.MEMORY_SIZE, Flags.DISCRIMINATING),
/**
* The <code>-Xss</code> value to pass to the daemon
*/
MVND_THREAD_STACK_SIZE("mvnd.threadStackSize", null, "1M", OptionType.MEMORY_SIZE, Flags.DISCRIMINATING),
/**
* Additional JVM args to pass to the daemon
*/