We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 45c4eaa commit 79a3554Copy full SHA for 79a3554
test/jdk/com/sun/management/ThreadMXBean/ThreadCpuTimeArray.java
@@ -75,7 +75,6 @@ public static void main(String[] argv)
75
// threads block after doing some computation
76
waitUntilThreadBlocked();
77
78
-
79
long times[] = mbean.getThreadCpuTime(ids);
80
long userTimes[] = mbean.getThreadUserTime(ids);
81
@@ -222,6 +221,8 @@ private static void waitUntilThreadBlocked()
222
221
}
223
224
+ // Account for threads using CPU for a few millis after their WAITING state is visible:
225
+ goSleep(500);
226
227
228
public static void doit() {
0 commit comments