What is the difference between -Xss and -XX:ThreadStackSize?

前端 未结 5 2143
我寻月下人不归
我寻月下人不归 2021-02-13 16:00

I just want to control the stack size for all of my threads in a Java (groovy) application. For the Hotspot Oracle VM, I know that there are two parameters doing that (-Xss and

5条回答
  •  灰色年华
    2021-02-13 16:47

    -Xss is standard options recognized by the Java HotSpot VM.

    -XX:ThreadStackSize as other -XX options are not stable and are subject to change without notice.

    See Java HotSpot VM Options

提交回复
热议问题