I have a small Java application that starts a small Jetty server. This usually works great.
Unfortunately, when I start a completely unrelated, non-Java full screen game (I tried with World of Warcraft and SW: TOR), the app immediately crashes. It does not leave a hs_err log file to tell me why. It simply dies with the Windows "This app has stopped working"-dialog. The game itself continues running fine. It crashes on any game I've tried, but not on full screen video players. It crashes both if started from Eclipse and from command line. I haven't been able to reproduce this with another Java application, from simple to very large ones. When I start WoW in fullscreen (windowed) mode, the app continues running fine, so it seems this is triggered by having a full screen app that takes control of the entire desktop.
It seems like that for some reason the JVM crashes when my video card starts doing something.
Does anyone have an idea why this crash happens, or how I can figure out why it does? I'm not sure how starting a completely unrelated application (video driver maybe?) would interfere with my JVM.