comparison src/share/vm/runtime/statSampler.cpp @ 14309:63a4eb8bcd23

8025856: Fix typos in the GC code Summary: Fix about 440 typos in comments in the VM code Reviewed-by: mgerdin, tschatzl, coleenp, kmo, jcoomes
author jwilhelm
date Thu, 23 Jan 2014 14:47:23 +0100
parents 1d1603768966
children 4ca6dc0799b6
comparison
equal deleted inserted replaced
14308:870aedf4ba4f 14309:63a4eb8bcd23
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);