...
Unfortunately, the stop()
method incorrectly uses the Thread.getState()
method to check whether the thread is blocked and has not terminated before delivering the notification. Using the Thread.getState()
method for synchronization control, such as checking whether a thread is blocked on a wait, is inappropriate. Java Virtual Machines (JVMs) are permitted to implement blocking using spin-waiting; consequently, a thread can be blocked without entering the WAITING
or TIMED_WAITING
state [Goetz 20062006a]. Because the thread may never enter the WAITING
state, the stop()
method might fail to terminate the thread.
...
Bibliography
...