Run 64-bit JVM from C code Run 64-bit JVM from C code windows windows

Run 64-bit JVM from C code


And are you asking what you can do to fix this?

A very very good document regarding this topic is Troubleshooting Guide for Java from (originally) Sun. See the chapter "Troubleshooting System Crashes" for information about hs_err_pid* Files.

See Appendix C - Fatal Error Log

and side note that hs_err_pid.log files only get created if there is an actual JVM crash.If your application "only" quits due to an unhandled exception somewhere, then no such file will be created.

Are you sure that the crash was a real JVM crash?


So, I found and fixed the problem.I had an Application Manifest (MSDN) which had the processor architecture defined to x86. I changed it to * what solved the problem.