comparison src/share/vm/prims/jvmtiExport.cpp @ 14521:29ccc4cbabca

Merge
author Gilles Duboscq <duboscq@ssw.jku.at>
date Wed, 12 Mar 2014 13:30:08 +0100
parents 016b6a289fc4
children 4ca6dc0799b6
comparison
equal deleted inserted replaced
14520:f84115370178 14521:29ccc4cbabca
2159 // Maybe both these functions should be rolled into the posts? 2159 // Maybe both these functions should be rolled into the posts?
2160 JvmtiEventController::thread_ended(thread); 2160 JvmtiEventController::thread_ended(thread);
2161 } 2161 }
2162 } 2162 }
2163 2163
2164 void JvmtiExport::clear_detected_exception(JavaThread* thread) {
2165 assert(JavaThread::current() == thread, "thread is not current");
2166
2167 JvmtiThreadState* state = thread->jvmti_thread_state();
2168 if (state != NULL) {
2169 state->clear_exception_detected();
2170 }
2171 }
2172
2164 void JvmtiExport::oops_do(OopClosure* f) { 2173 void JvmtiExport::oops_do(OopClosure* f) {
2165 JvmtiCurrentBreakpoints::oops_do(f); 2174 JvmtiCurrentBreakpoints::oops_do(f);
2166 JvmtiVMObjectAllocEventCollector::oops_do_for_all_threads(f); 2175 JvmtiVMObjectAllocEventCollector::oops_do_for_all_threads(f);
2167 } 2176 }
2168 2177