TravelerVihaan
TravelerVihaan

Reputation: 231

How to create thread and core dump on JVM crash

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

Answers (1)

Alexander Prisadkov
Alexander Prisadkov

Reputation: 257

As stated above, this is solution for OOM.

For other fatal errors jvm provide -XX:OnError Option.

More information.

Upvotes: 5

Related Questions