|
jsp.insertJavaMethod(waitingThreads, true); |
|
jsp.insertJavaMethod(blockedThreads, true); |
Why
"TIMED_WAITING" state + "parking" sub state -> waitingThreads
But
"WAITING" state + "parking" sub state -> blockedThreads
I think they all belong to waitingThreads.
JavaPerformanceTuning/FirstEdition/JStack/src/net/sdo/ParseJStack.java
Line 266 in 49d6b37
JavaPerformanceTuning/FirstEdition/JStack/src/net/sdo/ParseJStack.java
Line 279 in 49d6b37
Why
"TIMED_WAITING" state + "parking" sub state -> waitingThreads
But
"WAITING" state + "parking" sub state -> blockedThreads
I think they all belong to waitingThreads.