File tree 1 file changed +7
-10
lines changed
1 file changed +7
-10
lines changed Original file line number Diff line number Diff line change @@ -258,19 +258,16 @@ class GetCurrentLocationClosure : public HandshakeClosure {
258
258
JavaThread *jt = target->as_Java_thread ();
259
259
ResourceMark rmark; // jt != Thread::current()
260
260
RegisterMap rm (jt, false );
261
- // There can be a race condition between a VM_Operation reaching a safepoint
261
+ // There can be a race condition between a handshake
262
262
// and the target thread exiting from Java execution.
263
- // We must recheck the last Java frame still exists.
263
+ // We must recheck that the last Java frame still exists.
264
264
if (!jt->is_exiting () && jt->has_last_Java_frame ()) {
265
265
javaVFrame* vf = jt->last_java_vframe (&rm);
266
- assert (vf != NULL , " must have last java frame" );
267
- Method* method = vf->method ();
268
- _method_id = method->jmethod_id ();
269
- _bci = vf->bci ();
270
- } else {
271
- // Clear current location as the target thread has no Java frames anymore.
272
- _method_id = (jmethodID)NULL ;
273
- _bci = 0 ;
266
+ if (vf != NULL ) {
267
+ Method* method = vf->method ();
268
+ _method_id = method->jmethod_id ();
269
+ _bci = vf->bci ();
270
+ }
274
271
}
275
272
_completed = true ;
276
273
}
You can’t perform that action at this time.
0 commit comments