Searched defs:_live_threads_count (Results 1 - 2 of 2) sorted by relevance

/openjdk7/hotspot/src/share/vm/services/
H A DthreadService.cpp52 PerfVariable* ThreadService::_live_threads_count = NULL; member in class:ThreadService
73 _live_threads_count =
107 _live_threads_count->inc();
109 if (_live_threads_count->get_value() > _peak_threads_count->get_value()) {
110 _peak_threads_count->set_value(_live_threads_count->get_value());
126 _live_threads_count->set_value(_live_threads_count->get_value() - 1);
H A DthreadService.hpp57 static PerfVariable* _live_threads_count; member in class:ThreadService
92 static jlong get_live_thread_count() { return _live_threads_count->get_value() - _exiting_threads_count; }

Completed in 76 milliseconds