Cannot understand this Error log
-
# # An unexpected error has been detected by Java Runtime Environment: # # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x6d9ac0c6, pid=1972, tid=932 # # Java VM: Java HotSpot(TM) Client VM (10.0-b23 mixed mode, sharing windows-x86) # Problematic frame: # V [jvm.dll+0x13c0c6] # # If you would like to submit a bug report, please visit: # http://java.sun.com/webapps/bugreport/crash.jsp # --------------- T H R E A D --------------- Current thread (0x02aac800): VMThread [stack: 0x02b90000,0x02be0000] [id=932] ......................and it goes on to give a lot of other data. How do I interpret it?
-
# # An unexpected error has been detected by Java Runtime Environment: # # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x6d9ac0c6, pid=1972, tid=932 # # Java VM: Java HotSpot(TM) Client VM (10.0-b23 mixed mode, sharing windows-x86) # Problematic frame: # V [jvm.dll+0x13c0c6] # # If you would like to submit a bug report, please visit: # http://java.sun.com/webapps/bugreport/crash.jsp # --------------- T H R E A D --------------- Current thread (0x02aac800): VMThread [stack: 0x02b90000,0x02be0000] [id=932] ......................and it goes on to give a lot of other data. How do I interpret it?
kartikdasani wrote:
# If you would like to submit a bug report, please visit:
# http://java.sun.com/webapps/bugreport/crash.jspThat seems a fairly clear piece of advice. Unless you have the source code of the JVM I would suspect there is not much in the dump that will make a lot of sense.
The best things in life are not things.
-
# # An unexpected error has been detected by Java Runtime Environment: # # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x6d9ac0c6, pid=1972, tid=932 # # Java VM: Java HotSpot(TM) Client VM (10.0-b23 mixed mode, sharing windows-x86) # Problematic frame: # V [jvm.dll+0x13c0c6] # # If you would like to submit a bug report, please visit: # http://java.sun.com/webapps/bugreport/crash.jsp # --------------- T H R E A D --------------- Current thread (0x02aac800): VMThread [stack: 0x02b90000,0x02be0000] [id=932] ......................and it goes on to give a lot of other data. How do I interpret it?
Your runtime crashed. That's bad - really bad, not to say ugly. Is it happening in a project you're working on? That's a really bad thing if this happens - you need to find the failure. Somebody / something throws a RuntimeException[^]. You need to find the fail. EDIT: Crosspost -> getTopWindows() causes runtime crash[^]
regards Torsten I never finish anyth...
-
# # An unexpected error has been detected by Java Runtime Environment: # # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x6d9ac0c6, pid=1972, tid=932 # # Java VM: Java HotSpot(TM) Client VM (10.0-b23 mixed mode, sharing windows-x86) # Problematic frame: # V [jvm.dll+0x13c0c6] # # If you would like to submit a bug report, please visit: # http://java.sun.com/webapps/bugreport/crash.jsp # --------------- T H R E A D --------------- Current thread (0x02aac800): VMThread [stack: 0x02b90000,0x02be0000] [id=932] ......................and it goes on to give a lot of other data. How do I interpret it?
You are using the 32 bit VM. The MOST likely cause of that problem is JNI code or a third party library that uses JNI code. Probably 95% of all occurences is due to that. Other than the next most likely cause is your environment. Something 'odd'. Such as some unusual firewall, patches, etc.