|
Re: 100 threads then robot code gets terminated
What output is reported? Can you try to print out the amount of free Java heap occasionally (Runtime.getRuntime().freeMemory())?
You can also check the number of currently executing threads (including those that are waiting for something), by calling Thread.activeCount().
|