Whenever you get such a crash, a Java programmer almost never fails because the JVM crashes, which should not be. Looking at the log file, it looks like somewhere in the JJ OpenJDK; I do not know what specifically causes this. I would suggest you try Oracle JDK, not OpenJDK.
I am not a specialist in reading these types of crash dumps, but this is the part that I use to determine what causes the problem:
# Problematic frame:
This is at the top of the dump. This is not always libjvm.so; I saw some with libGL.so.
If you want to write an error, the dump includes the following statement:
I do not know what you are doing, which leads to a failure, and there may be a workaround. But under no circumstances does the JVM fail, so this is a bug in the JVM that you are using.
Edit
The log states that you are using Ubuntu 9.10; there have been two releases of Ubuntu since then, so I doubt the error will be useful if you don't check it on Ubuntu 10.04 or 10.10. I donβt know if you can upgrade to a newer version, but your problem may already be fixed.
source share