本文整理汇总了C++中PerfCounter::get_value方法的典型用法代码示例。如果您正苦于以下问题:C++ PerfCounter::get_value方法的具体用法?C++ PerfCounter::get_value怎么用?C++ PerfCounter::get_value使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PerfCounter
的用法示例。
在下文中一共展示了PerfCounter::get_value方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: unloaded_class_bytes
static jlong unloaded_class_bytes() {
if (UsePerfData) {
return _classbytes_unloaded->get_value() + _shared_classbytes_unloaded->get_value();
} else {
return -1;
}
}
示例2: get_total_thread_count
static jlong get_total_thread_count() { return _total_threads_count->get_value(); }
示例3: unloaded_shared_class_count
static jlong unloaded_shared_class_count() {
return _shared_classes_unloaded_count->get_value();
}
示例4: loaded_class_count
static jlong loaded_class_count() {
return _classes_loaded_count->get_value() + _shared_classes_loaded_count->get_value();
}
示例5: total_compilation_ticks
// Return total compilation ticks
static jlong total_compilation_ticks() {
return _perf_total_compilation != NULL ? _perf_total_compilation->get_value() : 0;
}