@@ -231,6 +231,9 @@ public void setThreadContentionMonitoringEnabled(boolean enable) {
231
231
232
232
private boolean verifyCurrentThreadCpuTime () {
233
233
// check if Thread CPU time measurement is supported.
234
+ if (Thread .currentThread ().isVirtual ()) {
235
+ throw new UnsupportedOperationException ("Not supported by virtual threads" );
236
+ }
234
237
if (!isCurrentThreadCpuTimeSupported ()) {
235
238
throw new UnsupportedOperationException (
236
239
"Current thread CPU time measurement is not supported." );
@@ -241,9 +244,6 @@ private boolean verifyCurrentThreadCpuTime() {
241
244
@ Override
242
245
public long getCurrentThreadCpuTime () {
243
246
if (verifyCurrentThreadCpuTime ()) {
244
- if (Thread .currentThread ().isVirtual ()) {
245
- throw new UnsupportedOperationException ("Not supported by virtual threads" );
246
- }
247
247
return getThreadTotalCpuTime0 (0 );
248
248
}
249
249
return -1 ;
@@ -311,9 +311,6 @@ protected long[] getThreadCpuTime(long[] ids) {
311
311
@ Override
312
312
public long getCurrentThreadUserTime () {
313
313
if (verifyCurrentThreadCpuTime ()) {
314
- if (Thread .currentThread ().isVirtual ()) {
315
- throw new UnsupportedOperationException ("Not supported by virtual threads" );
316
- }
317
314
return getThreadUserCpuTime0 (0 );
318
315
}
319
316
return -1 ;
@@ -373,10 +370,7 @@ public void setThreadCpuTimeEnabled(boolean enable) {
373
370
}
374
371
375
372
protected long getCurrentThreadAllocatedBytes () {
376
- if (isThreadAllocatedMemoryEnabled ()) {
377
- if (Thread .currentThread ().isVirtual ()) {
378
- return -1 ;
379
- }
373
+ if (isThreadAllocatedMemoryEnabled () && !Thread .currentThread ().isVirtual ()) {
380
374
return getThreadAllocatedMemory0 (0 );
381
375
}
382
376
return -1 ;
@@ -389,7 +383,6 @@ private boolean verifyThreadAllocatedMemory(long id) {
389
383
390
384
protected long getThreadAllocatedBytes (long id ) {
391
385
boolean verified = verifyThreadAllocatedMemory (id );
392
-
393
386
if (verified ) {
394
387
Thread thread = Thread .currentThread ();
395
388
if (id == thread .getId ()) {
0 commit comments