How to increase JVM stack size
I need to increase JVM stack size. I have tried using -Xss option, still the application throwing 'Stack Overflow' exception. When i increse stack using EDITBIN /STACK:1048576 java.exe, the test succeeds.
Is there anyway to increase the stack size other than '-Xss' and EDITBIN options?
Re: How to increase JVM stack size
What exactly is the error you are getting? Is Java producing a log file with more details? Are you running memory intensive threads?
Re: How to increase JVM stack size
i'm with davy.. the first recourse in any program that generates a stackoverflow should be to examine the root cause of the problem rather than throw more memory at it..