I suspect in my application that an outofmemoryerror is causing a a run() to exit, however because there were no logs, the error wasn't visible.
What should i do in this case?
|
I suspect in my application that an outofmemoryerror is causing a a run() to exit, however because there were no logs, the error wasn't visible. What should i do in this case?
| |||
|
feedback
|
|
I don't know about others, but never (IMHO)
An | ||||
feedback
|
|
You should run your JVM with this flag: | |||
|
feedback
|
|
I do not see a reason as why you can not do that as parent and child threads all are spawned in the same JVM and they share the same heap memory. There are rare requirements to catch OOM errors though as explained here | |||
|
feedback
|
ExceptionorErroris uncaught, it should appear in the output (System.err). – Andrew Thompson Oct 17 '11 at 8:45