HotSpot の製品情報を納めた名前空間(AllStatic クラス).
例えば次のような情報を格納している.
((cite: hotspot/src/share/vm/runtime/vm_version.hpp))
// VM_Version provides information about the VM.
class Abstract_VM_Version: AllStatic {
なお, "Abstract_" というクラス名だが abstract class ではない (というか AllStatic なので関係ない. 実際このクラスのメソッドは使用されている).
ビルド時に, 以下のマクロ定数が定義されている必要がある (内部的にこれらの情報を使用する).
((cite: hotspot/src/share/vm/runtime/vm_version.cpp))
#ifndef HOTSPOT_RELEASE_VERSION
#error HOTSPOT_RELEASE_VERSION must be defined
#endif
#ifndef JRE_RELEASE_VERSION
#error JRE_RELEASE_VERSION must be defined
#endif
#ifndef HOTSPOT_BUILD_TARGET
#error HOTSPOT_BUILD_TARGET must be defined
#endif
((cite: hotspot/src/share/vm/runtime/vm_version.cpp))
#ifndef HOTSPOT_VM_DISTRO
#error HOTSPOT_VM_DISTRO must be defined
#endif
また上記以外にも製品情報を定義するためのマクロ定数が多数存在している.
ベンダー情報を変更するには, VENDOR というマクロ定数を定義すればいい (このマクロにベンダー名を設定する).
See: here for details
See: here for details
This document is available under the GNU GENERAL PUBLIC LICENSE Version 2.