hotspot/src/share/vm/prims/jvmtiImpl.cpp
void JvmtiBreakpoint::clear() {
{- -------------------------------------------
(1) methodOopDesc::clear_breakpoint() を引数として
JvmtiBreakpoint::each_method_version_do() を呼び出す.
(これにより, コンストラクタで指定されたメソッドの (現在及び過去の) 全ての EMCP バージョンに対して
methodOopDesc::clear_breakpoint() が実行され,
コンストラクタ引数で指定された箇所がブレークポイントから元に戻される.
EMCP については RedefineClass() 参照.)
---------------------------------------- -}
each_method_version_do(&methodOopDesc::clear_breakpoint);
}
This document is available under the GNU GENERAL PUBLIC LICENSE Version 2.