- Por Mashooq Badar
- ·
- Publicado 26 Feb 2010
JVM Profiling: Thread Dumps
Thread dumps are possilby the most useful tool in diagnosing concurrancy related issues. You can get a thread dump at any time by sending a break signal to the JVM. In Windows it's CTRL-Break and in Unix/Linux it's kill -3 <pid> The possible issues to...