I'm writing a single threaded program, which sometimes calls blocking methods (ie process.waitFor).
Can I be sure that the interrupted status of my thread is never set? Are there other conditions under which the JVM or the JRE standard library might decide to set the interrupt flag on my thread?
It seems true, but I couldn't find any mention about it in the Java docs.
interruptedflag though – gnat Oct 27 '11 at 18:57InterruptedException. – Chi-Lan Oct 27 '11 at 20:19Threadobject. – Chi-Lan Oct 27 '11 at 20:20