Skip to content

Commit 452b4f4

Browse files
committedApr 16, 2021
ThreadMXBeans/VirtualThreads test failing on linux
1 parent d050d9c commit 452b4f4

File tree

1 file changed

+4
-11
lines changed

1 file changed

+4
-11
lines changed
 

‎src/java.management/share/classes/sun/management/ThreadImpl.java

+4-11
Original file line numberDiff line numberDiff line change
@@ -231,6 +231,9 @@ public void setThreadContentionMonitoringEnabled(boolean enable) {
231231

232232
private boolean verifyCurrentThreadCpuTime() {
233233
// check if Thread CPU time measurement is supported.
234+
if (Thread.currentThread().isVirtual()) {
235+
throw new UnsupportedOperationException("Not supported by virtual threads");
236+
}
234237
if (!isCurrentThreadCpuTimeSupported()) {
235238
throw new UnsupportedOperationException(
236239
"Current thread CPU time measurement is not supported.");
@@ -241,9 +244,6 @@ private boolean verifyCurrentThreadCpuTime() {
241244
@Override
242245
public long getCurrentThreadCpuTime() {
243246
if (verifyCurrentThreadCpuTime()) {
244-
if (Thread.currentThread().isVirtual()) {
245-
throw new UnsupportedOperationException("Not supported by virtual threads");
246-
}
247247
return getThreadTotalCpuTime0(0);
248248
}
249249
return -1;
@@ -311,9 +311,6 @@ protected long[] getThreadCpuTime(long[] ids) {
311311
@Override
312312
public long getCurrentThreadUserTime() {
313313
if (verifyCurrentThreadCpuTime()) {
314-
if (Thread.currentThread().isVirtual()) {
315-
throw new UnsupportedOperationException("Not supported by virtual threads");
316-
}
317314
return getThreadUserCpuTime0(0);
318315
}
319316
return -1;
@@ -373,10 +370,7 @@ public void setThreadCpuTimeEnabled(boolean enable) {
373370
}
374371

375372
protected long getCurrentThreadAllocatedBytes() {
376-
if (isThreadAllocatedMemoryEnabled()) {
377-
if (Thread.currentThread().isVirtual()) {
378-
return -1;
379-
}
373+
if (isThreadAllocatedMemoryEnabled() && !Thread.currentThread().isVirtual()) {
380374
return getThreadAllocatedMemory0(0);
381375
}
382376
return -1;
@@ -389,7 +383,6 @@ private boolean verifyThreadAllocatedMemory(long id) {
389383

390384
protected long getThreadAllocatedBytes(long id) {
391385
boolean verified = verifyThreadAllocatedMemory(id);
392-
393386
if (verified) {
394387
Thread thread = Thread.currentThread();
395388
if (id == thread.getId()) {

0 commit comments

Comments
 (0)
Please sign in to comment.