On linux, when the tomcat process gets stuck, idea is unable to kill it
For example when there's a PermGen leak, after reloading a webapp a number of times, it will throw a Java.lang.OutOfMemoryError: PermGen space, and the process will be completely stuck, so the only way to fix the problem is to manually kill it ( kill -9 that is ) from the command line.
This is real annoying since in some cases there's such permgen leaks cannot be avoided (when using AspectJ runtime weaving for example)
I was under the impression there was a 'kill process' button (skull icon) in addition to the normal stop (cross), but i haven't seen it in a long time (maybe it's windows only?)
Environment: Linux (Ubuntu 8.10)
For example the 'Stop' button instead of graying out could change to a 'force' kill mode that could be clicked again to immediately kill it, rather than having to wait 10-20sec when you already know it's not going to work (like when the server blew up with a PermGen exception for example)