JVMTI の機能を実現するためのクラス. より具体的に言うと, JVMTI の capability(権限)管理用の関数を納めた名前空間(AllStatic クラス) (See: here for details).
((cite: hotspot/src/share/vm/prims/jvmtiManageCapabilities.hpp))
class JvmtiManageCapabilities : public AllStatic {
以下の箇所で(のみ)使用されている.
これらは同名の JVMTI 関数を実現するためのメソッド (See: here for details).
これは JVMTI の GetEnv() 関数を実現するためのメソッド (See: here for details).
これは JVMTI の DisposeEnvironment() 関数を実現するためのメソッド (See: here for details).
これは HotSpot の起動中に Threads::create_vm() 内で呼び出されるメソッド.
See: here for details
This document is available under the GNU GENERAL PUBLIC LICENSE Version 2.