@@ -114,6 +114,13 @@ static void joinThreads(Thread[] threads) {
114
114
throw new Error ("Unexpected " + e );
115
115
}
116
116
}
117
+ static Thread expOwnerThread () {
118
+ return Thread .currentThread ().isVirtual () ? null : Thread .currentThread ();
119
+ }
120
+
121
+ static int expEntryCount () {
122
+ return Thread .currentThread ().isVirtual () ? 0 : 1 ;
123
+ }
117
124
118
125
/* Scenario #0:
119
126
* - owning: 0
@@ -127,14 +134,18 @@ static void test0(boolean isVirtual) {
127
134
128
135
setTestedMonitor (lockCheck );
129
136
Thread [] wThreads = startWaitingThreads (isVirtual );
137
+ final int expWaitingCount = isVirtual ? 0 : NUMBER_OF_WAITING_THREADS ;
130
138
139
+ // The numbers below describe the testing scenario, not the expected results.
140
+ // The expected numbers are different for virtual threads because
141
+ // they are not supported by JVMTI GetObjectMonitorUsage.
131
142
// entry count: 0
132
143
// count of threads waiting to enter: 0
133
144
// count of threads waiting to re-enter: 0
134
145
// count of threads waiting to be notified: NUMBER_OF_WAITING_THREADS
135
146
check (lockCheck , null , 0 , // no owner thread
136
147
0 , // count of threads waiting to enter: 0
137
- NUMBER_OF_WAITING_THREADS );
148
+ expWaitingCount );
138
149
139
150
synchronized (lockCheck ) {
140
151
lockCheck .notifyAll ();
@@ -158,20 +169,30 @@ static void test1(boolean isVirtual) {
158
169
Thread [] eThreads = null ;
159
170
160
171
synchronized (lockCheck ) {
172
+ // Virtual threads are not supported by GetObjectMonitorUsage.
173
+ // Correct the expected values for the virtual thread case.
174
+ int expEnteringCount = isVirtual ? 0 : NUMBER_OF_ENTERING_THREADS ;
175
+
176
+ // The numbers below describe the testing scenario, not the expected results.
177
+ // The expected numbers are different for virtual threads because
178
+ // they are not supported by JVMTI GetObjectMonitorUsage.
161
179
// entry count: 1
162
180
// count of threads waiting to enter: 0
163
181
// count of threads waiting to re-enter: 0
164
182
// count of threads waiting to be notified: 0
165
- check (lockCheck , Thread . currentThread (), 1 , 0 , 0 );
183
+ check (lockCheck , expOwnerThread (), expEntryCount () , 0 , 0 );
166
184
167
185
eThreads = startEnteringThreads (isVirtual );
168
186
187
+ // The numbers below describe the testing scenario, not the expected results.
188
+ // The expected numbers are different for virtual threads because
189
+ // they are not supported by JVMTI GetObjectMonitorUsage.
169
190
// entry count: 1
170
191
// count of threads waiting to enter: NUMBER_OF_ENTERING_THREADS
171
192
// count of threads waiting to re-enter: 0
172
193
// count of threads waiting to be notified: 0
173
- check (lockCheck , Thread . currentThread (), 1 ,
174
- NUMBER_OF_ENTERING_THREADS ,
194
+ check (lockCheck , expOwnerThread (), expEntryCount () ,
195
+ expEnteringCount ,
175
196
0 /* count of threads waiting to be notified: 0 */ );
176
197
177
198
}
@@ -195,15 +216,23 @@ static void test2(boolean isVirtual) throws Error {
195
216
Thread [] eThreads = null ;
196
217
197
218
synchronized (lockCheck ) {
219
+ // Virtual threads are not supported by the GetObjectMonitorUsage.
220
+ // Correct the expected values for the virtual thread case.
221
+ int expEnteringCount = isVirtual ? 0 : NUMBER_OF_ENTERING_THREADS ;
222
+ int expWaitingCount = isVirtual ? 0 : NUMBER_OF_WAITING_THREADS ;
223
+
198
224
eThreads = startEnteringThreads (isVirtual );
199
225
226
+ // The numbers below describe the testing scenario, not the expected results.
227
+ // The expected numbers are different for virtual threads because
228
+ // they are not supported by JVMTI GetObjectMonitorUsage.
200
229
// entry count: 1
201
230
// count of threads waiting to enter: NUMBER_OF_ENTERING_THREADS
202
231
// count of threads waiting to re-enter: 0
203
232
// count of threads waiting to be notified: NUMBER_OF_WAITING_THREADS
204
- check (lockCheck , Thread . currentThread (), 1 ,
205
- NUMBER_OF_ENTERING_THREADS ,
206
- NUMBER_OF_WAITING_THREADS );
233
+ check (lockCheck , expOwnerThread (), expEntryCount () ,
234
+ expEnteringCount ,
235
+ expWaitingCount );
207
236
208
237
lockCheck .notifyAll ();
209
238
}
@@ -234,35 +263,51 @@ static void test3(boolean isVirtual) throws Error {
234
263
Thread [] eThreads = null ;
235
264
236
265
synchronized (lockCheck ) {
266
+ // Virtual threads are not supported by GetObjectMonitorUsage.
267
+ // Correct the expected values for the virtual thread case.
268
+ int expEnteringCount = isVirtual ? 0 : NUMBER_OF_ENTERING_THREADS ;
269
+ int expWaitingCount = isVirtual ? 0 : NUMBER_OF_WAITING_THREADS ;
270
+
271
+ // The numbers below describe the testing scenario, not the expected results.
272
+ // The expected numbers are different for virtual threads because
273
+ // they are not supported by JVMTI GetObjectMonitorUsage.
237
274
// entry count: 1
238
275
// count of threads waiting to enter: 0
239
276
// count of threads waiting to re-enter: 0
240
277
// count of threads waiting to be notified: NUMBER_OF_WAITING_THREADS
241
- check (lockCheck , Thread . currentThread (), 1 ,
278
+ check (lockCheck , expOwnerThread (), expEntryCount () ,
242
279
0 , // number of threads waiting to enter or re-enter
243
- NUMBER_OF_WAITING_THREADS );
280
+ expWaitingCount );
244
281
245
282
eThreads = startEnteringThreads (isVirtual );
246
283
284
+ // The numbers below describe the testing scenario, not the expected results.
285
+ // The expected numbers are different for virtual threads because
286
+ // they are not supported by JVMTI GetObjectMonitorUsage.
247
287
// entry count: 1
248
288
// count of threads waiting to enter: NUMBER_OF_ENTERING_THREADS
249
289
// count of threads waiting to re-enter: 0
250
290
// count of threads waiting to be notified: NUMBER_OF_WAITING_THREADS
251
- check (lockCheck , Thread . currentThread (), 1 ,
252
- NUMBER_OF_ENTERING_THREADS ,
253
- NUMBER_OF_WAITING_THREADS );
291
+ check (lockCheck , expOwnerThread (), expEntryCount () ,
292
+ expEnteringCount ,
293
+ expWaitingCount );
254
294
255
295
for (int i = 0 ; i < NUMBER_OF_WAITING_THREADS ; i ++) {
296
+ expEnteringCount = isVirtual ? 0 : NUMBER_OF_ENTERING_THREADS + i + 1 ;
297
+ expWaitingCount = isVirtual ? 0 : NUMBER_OF_WAITING_THREADS - i - 1 ;
256
298
lockCheck .notify (); // notify waiting threads one by one
257
299
// now the notified WaitingTask has to be blocked on the lockCheck re-enter
258
300
301
+ // The numbers below describe the testing scenario, not the expected results.
302
+ // The expected numbers are different for virtual threads because
303
+ // they are not supported by JVMTI GetObjectMonitorUsage.
259
304
// entry count: 1
260
305
// count of threads waiting to enter: NUMBER_OF_ENTERING_THREADS
261
306
// count of threads waiting to re-enter: i + 1
262
307
// count of threads waiting to be notified: NUMBER_OF_WAITING_THREADS - i - 1
263
- check (lockCheck , Thread . currentThread (), 1 ,
264
- NUMBER_OF_ENTERING_THREADS + i + 1 ,
265
- NUMBER_OF_WAITING_THREADS - i - 1 );
308
+ check (lockCheck , expOwnerThread (), expEntryCount () ,
309
+ expEnteringCount ,
310
+ expWaitingCount );
266
311
}
267
312
}
268
313
joinThreads (wThreads );
0 commit comments