@@ -51,7 +51,8 @@ static const char *CLASS_SIG =
51
51
52
52
static volatile jint result = PASSED;
53
53
static jvmtiEnv *jvmti = NULL ;
54
- static jvmtiEventCallbacks callbacks;
54
+
55
+ static volatile jboolean isVirtualExpected = JNI_FALSE;
55
56
56
57
static volatile int callbacksEnabled = NSK_FALSE;
57
58
static jrawMonitorID agent_lock;
@@ -86,7 +87,7 @@ ClassLoad(jvmtiEnv *jvmti, JNIEnv *jni, jthread thread, jclass klass) {
86
87
jni->FatalError (" failed to obtain a class signature\n " );
87
88
}
88
89
if (sig != NULL && (strcmp (sig, CLASS_SIG) == 0 )) {
89
- NSK_DISPLAY1 (
90
+ printf (
90
91
" ClassLoad event received for the class \" %s\"\n "
91
92
" \t setting breakpoint ...\n " ,
92
93
sig);
@@ -122,7 +123,7 @@ Breakpoint(jvmtiEnv *jvmti, JNIEnv *jni, jthread thr, jmethodID method, jlocatio
122
123
}
123
124
124
125
if (sig != NULL && (strcmp (sig, CLASS_SIG) == 0 )) {
125
- NSK_DISPLAY1 (" method declaring class \" %s\"\n\t enabling SingleStep events ...\n " , sig);
126
+ printf (" method declaring class \" %s\"\n\t enabling SingleStep events ...\n " , sig);
126
127
err = jvmti->SetEventNotificationMode (JVMTI_ENABLE, JVMTI_EVENT_SINGLE_STEP, thr);
127
128
if (err != JVMTI_ERROR_NONE) {
128
129
result = STATUS_FAILED;
@@ -133,6 +134,7 @@ Breakpoint(jvmtiEnv *jvmti, JNIEnv *jni, jthread thr, jmethodID method, jlocatio
133
134
NSK_COMPLAIN1 (" TEST FAILURE: unexpected breakpoint event in method of class \" %s\"\n\n " ,
134
135
sig);
135
136
}
137
+ isVirtualExpected = jni->IsVirtualThread (thr);
136
138
jvmti->RawMonitorExit (agent_lock);
137
139
}
138
140
@@ -149,6 +151,8 @@ SingleStep(jvmtiEnv *jvmti, JNIEnv *jni, jthread thread,
149
151
150
152
NSK_DISPLAY0 (" >>>> SingleStep event received\n " );
151
153
154
+ print_thread_info (jni, jvmti, thread);
155
+
152
156
err = jvmti->GetMethodName (method, &methNam, &methSig, NULL );
153
157
if (err != JVMTI_ERROR_NONE) {
154
158
result = STATUS_FAILED;
@@ -184,16 +188,22 @@ SingleStep(jvmtiEnv *jvmti, JNIEnv *jni, jthread thread,
184
188
(strcmp (methSig, METHOD_SIGS[0 ]) == 0 ) &&
185
189
(strcmp (sig, CLASS_SIG) == 0 )) {
186
190
stepEv[0 ]++;
187
- NSK_DISPLAY1 (" CHECK PASSED: SingleStep event received for the method \" %s\" as expected\n " ,
191
+ printf (" CHECK PASSED: SingleStep event received for the method \" %s\" as expected\n " ,
188
192
methNam);
189
193
} else if ((strcmp (methNam, METHODS[1 ]) == 0 ) &&
190
194
(strcmp (methSig, METHOD_SIGS[1 ]) == 0 ) &&
191
195
(strcmp (sig, CLASS_SIG) == 0 )) {
192
- stepEv[1 ]++;
193
- NSK_DISPLAY1 (
194
- " CHECK PASSED: SingleStep event received for the method \" %s\" as expected\n "
195
- " \t disabling the event generation\n " ,
196
- methNam);
196
+ jboolean isVirtual = jni->IsVirtualThread (thread);
197
+ if (isVirtualExpected != isVirtual) {
198
+ printf (" The thread IsVirtualThread %d differs from expected %d.\n " , isVirtual, isVirtualExpected);
199
+ result = STATUS_FAILED;
200
+ } else {
201
+ stepEv[1 ]++;
202
+ printf (
203
+ " CHECK PASSED: SingleStep event received for the method \" %s\" as expected\n "
204
+ " \t disabling the event generation\n " ,
205
+ methNam);
206
+ }
197
207
err = jvmti->SetEventNotificationMode (JVMTI_DISABLE, JVMTI_EVENT_SINGLE_STEP, thread);
198
208
if (err != JVMTI_ERROR_NONE) {
199
209
result = STATUS_FAILED;
@@ -213,7 +223,7 @@ SingleStep(jvmtiEnv *jvmti, JNIEnv *jni, jthread thread,
213
223
NSK_COMPLAIN0 (" TEST FAILED: unable to deallocate memory pointed to method signature\n\n " );
214
224
}
215
225
216
- NSK_DISPLAY0 (" <<<<\n\n " );
226
+ printf (" <<<<\n\n " );
217
227
}
218
228
219
229
void JNICALL
@@ -242,6 +252,8 @@ Java_singlestep01_check(JNIEnv *jni, jobject obj) {
242
252
result = STATUS_FAILED;
243
253
NSK_COMPLAIN1 (" TEST FAILED: no SingleStep events for the method \" %s\"\n\n " ,
244
254
METHODS[i]);
255
+ } else {
256
+ stepEv[i] = 0 ;
245
257
}
246
258
}
247
259
return result;
@@ -259,6 +271,7 @@ JNIEXPORT jint JNI_OnLoad_singlestep01(JavaVM *jvm, char *options, void *reserve
259
271
}
260
272
#endif
261
273
jint Agent_Initialize (JavaVM *jvm, char *options, void *reserved) {
274
+ jvmtiEventCallbacks callbacks;
262
275
jvmtiCapabilities caps;
263
276
jvmtiError err;
264
277
jint res;
@@ -272,6 +285,7 @@ jint Agent_Initialize(JavaVM *jvm, char *options, void *reserved) {
272
285
memset (&caps, 0 , sizeof (jvmtiCapabilities));
273
286
caps.can_generate_breakpoint_events = 1 ;
274
287
caps.can_generate_single_step_events = 1 ;
288
+ caps.can_support_virtual_threads = 1 ;
275
289
276
290
err = jvmti->AddCapabilities (&caps);
277
291
if (err != JVMTI_ERROR_NONE) {
@@ -288,11 +302,11 @@ jint Agent_Initialize(JavaVM *jvm, char *options, void *reserved) {
288
302
}
289
303
290
304
if (!caps.can_generate_single_step_events ) {
291
- NSK_DISPLAY0 (" Warning: generation of single step events is not implemented\n " );
305
+ printf (" Warning: generation of single step events is not implemented\n " );
292
306
}
293
307
294
308
/* set event callback */
295
- NSK_DISPLAY0 (" setting event callbacks ...\n " );
309
+ printf (" setting event callbacks ...\n " );
296
310
(void ) memset (&callbacks, 0 , sizeof (callbacks));
297
311
callbacks.ClassLoad = &ClassLoad;
298
312
callbacks.Breakpoint = &Breakpoint;
@@ -304,7 +318,7 @@ jint Agent_Initialize(JavaVM *jvm, char *options, void *reserved) {
304
318
return JNI_ERR;
305
319
}
306
320
307
- NSK_DISPLAY0 (" setting event callbacks done\n enabling JVMTI events ...\n " );
321
+ printf (" setting event callbacks done\n enabling JVMTI events ...\n " );
308
322
err = jvmti->SetEventNotificationMode (JVMTI_ENABLE, JVMTI_EVENT_VM_START, NULL );
309
323
if (err != JVMTI_ERROR_NONE) {
310
324
return JNI_ERR;
@@ -322,7 +336,7 @@ jint Agent_Initialize(JavaVM *jvm, char *options, void *reserved) {
322
336
return JNI_ERR;
323
337
}
324
338
325
- NSK_DISPLAY0 (" enabling the events done\n\n " );
339
+ printf (" enabling the events done\n\n " );
326
340
327
341
err = jvmti->CreateRawMonitor (" agent lock" , &agent_lock);
328
342
if (err != JVMTI_ERROR_NONE) {
0 commit comments