hotspot/src/share/vm/runtime/statSampler.cpp
changeset 22551 9bf46d16dcc6
parent 8921 14bfe81f2a9d
child 25715 d5a8dbdc5150
equal deleted inserted replaced
22550:820966182ab9 22551:9bf46d16dcc6
   220 
   220 
   221 /*
   221 /*
   222  * The list of System Properties that have corresponding PerfData
   222  * The list of System Properties that have corresponding PerfData
   223  * string instrumentation created by retrieving the named property's
   223  * string instrumentation created by retrieving the named property's
   224  * value from System.getProperty() and unconditionally creating a
   224  * value from System.getProperty() and unconditionally creating a
   225  * PerfStringConstant object initialized to the retreived value. This
   225  * PerfStringConstant object initialized to the retrieved value. This
   226  * is not an exhustive list of Java properties with corresponding string
   226  * is not an exhaustive list of Java properties with corresponding string
   227  * instrumentation as the create_system_property_instrumentation() method
   227  * instrumentation as the create_system_property_instrumentation() method
   228  * creates other property based instrumentation conditionally.
   228  * creates other property based instrumentation conditionally.
   229  */
   229  */
   230 
   230 
   231 // stable interface, supported counters
   231 // stable interface, supported counters
   323   // string constants
   323   // string constants
   324 
   324 
   325   // create string instrumentation for various Java properties.
   325   // create string instrumentation for various Java properties.
   326   create_system_property_instrumentation(CHECK);
   326   create_system_property_instrumentation(CHECK);
   327 
   327 
   328   // hotspot flags (from .hotspotrc) and args (from command line)
   328   // HotSpot flags (from .hotspotrc) and args (from command line)
   329   //
   329   //
   330   PerfDataManager::create_string_constant(JAVA_RT, "vmFlags",
   330   PerfDataManager::create_string_constant(JAVA_RT, "vmFlags",
   331                                           Arguments::jvm_flags(), CHECK);
   331                                           Arguments::jvm_flags(), CHECK);
   332   PerfDataManager::create_string_constant(JAVA_RT, "vmArgs",
   332   PerfDataManager::create_string_constant(JAVA_RT, "vmArgs",
   333                                           Arguments::jvm_args(), CHECK);
   333                                           Arguments::jvm_args(), CHECK);