Issue
Will a java thread have a unique PID in UNIX environment? If I want to kill a specific thread of execution , is it possible to be done outside the program?
id='dv3'>
Solution
Oracle includes jvisualvm
in the JDK\bin directory. You can use it to view threads running inside running JVM's. However, I don't see any support for terminating a thread.
Answered By - AJNeufeld Answer Checked By - Willingham (WPSolving Volunteer)