Reputation: 231
How can I create a thread and core dump on the JVM crash? Does any JVM argument exist which creates a file with these dumps when JVM crash suddenly?
In my case, I need to prepare Java Virtual Machine to create that file.
Upvotes: 2
Views: 4654
Reputation: 257
As stated above, this is solution for OOM.
For other fatal errors jvm provide -XX:OnError
Option.
Upvotes: 5