Fail to start my main application

Hi I can’t run the Main application.
I got this error
Software ResetException in thread “main” java.lang.OutOfMemoryError: Stacks space
at java.lang.System.getStackTrace(Unknown Source)
at java.lang.Throwable.fillInStackTrace(Throwable.java:82)
at java.lang.Throwable.(Throwable.java:37)
at java.lang.Error.(Error.java:18)
at java.lang.VirtualMachineError.(VirtualMachineError.java:10)
at java.lang.OutOfMemoryError.(OutOfMemoryError.java:16)
at java.lang.Thread.start(Thread.java:394)
at com.is2t.kf.FeatureFinalizer.initialize(FeatureFinalizer.java:33)
at ej.kf.Kernel.(Kernel.java:134)
at java.lang.Thread.execClinit(Unknown Source)
at java.lang.Thread.clinitWrapper(Thread.java:483)
at java.lang.Thread.callWrapper(Thread.java:449)
VM END (exit code = 0)

Do you what is going on?
How can I fix it?

Hi,

This exception is thrown when starting a Thread and there is no stack block available to initialize the thread stack
Check the number of stack blocks allocated for your application (Application Option core.memory.threads.pool.size).

You can also try to call LLMJVM_dump to get information on threads running and number of stacks blocks owned by each thread

–Frédéric