We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a6592f3 + b7c637e commit 4ba61a9Copy full SHA for 4ba61a9
espresso/src/com.oracle.truffle.espresso.jdwp/src/com/oracle/truffle/espresso/jdwp/impl/JDWP.java
@@ -2093,7 +2093,7 @@ private static int getThreadStatus(int jvmtiThreadStatus) {
2093
if ((masked & JVMTI_THREAD_STATE_RUNNABLE) != 0) {
2094
return ThreadStatusConstants.RUNNING;
2095
} else if ((masked & JVMTI_THREAD_STATE_BLOCKED_ON_MONITOR_ENTER) != 0) {
2096
- return ThreadStatusConstants.WAIT;
+ return ThreadStatusConstants.MONITOR;
2097
}
2098
2099
} else if ((masked & JVMTI_THREAD_STATE_WAITING) != 0) {
0 commit comments