src/hotspot/share/prims/jvmtiEnv.cpp
changeset 58196 cea6839598e8
parent 54623 1126f0607c70
child 58222 ee37c9b2eb61
equal deleted inserted replaced
58195:a82fe7a88ce4 58196:cea6839598e8
  1099   jvmtiError err = JvmtiExport::cv_external_thread_to_JavaThread(tlh.list(), thread, &java_thread, NULL);
  1099   jvmtiError err = JvmtiExport::cv_external_thread_to_JavaThread(tlh.list(), thread, &java_thread, NULL);
  1100   if (err != JVMTI_ERROR_NONE) {
  1100   if (err != JVMTI_ERROR_NONE) {
  1101     return err;
  1101     return err;
  1102   }
  1102   }
  1103 
  1103 
  1104   Thread::interrupt(java_thread);
  1104   java_thread->interrupt();
  1105 
  1105 
  1106   return JVMTI_ERROR_NONE;
  1106   return JVMTI_ERROR_NONE;
  1107 } /* end InterruptThread */
  1107 } /* end InterruptThread */
  1108 
  1108 
  1109 
  1109