I just migrated from Oracle JDK 1.6 to open JDK 1.7.0_03, and I hit a pretty wonderful deadlock on exiting:
java.lang.Thread.State: WAITING (on object monitor) at java.lang.Object.wait(Native Method) at java.lang.Thread.join(Thread.java:1258) - locked <0x8608dda0> (a sun.awt.X11.XToolkit$1$1) at java.lang.Thread.join(Thread.java:1332) at java.lang.ApplicationShutdownHooks.runHooks(ApplicationShutdownHooks.java:106) at java.lang.ApplicationShutdownHooks$1.run(ApplicationShutdownHooks.java:46) at java.lang.Shutdown.runHooks(Shutdown.java:123) at java.lang.Shutdown.sequence(Shutdown.java:167) at java.lang.Shutdown.exit(Shutdown.java:212) - locked <0x8603df28> (a java.lang.Class for java.lang.Shutdown) at java.lang.Runtime.exit(Runtime.java:107) at java.lang.System.exit(System.java:960)
It looks like you should call System.exit from the AWT event queue. Is this for real? No Stream Requirement Documentation in Sun Runtime.exit Docs
I came across other unexpected cases when getting an AWT tree lock is only required on Linux, but it takes a cake. Is this a mistake or am I just missing something in the documentation?
source share