< prev index next >

src/hotspot/share/runtime/perfData.cpp

Print this page




   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #include "precompiled.hpp"
  26 #include "jvm.h"
  27 #include "classfile/vmSymbols.hpp"
  28 #include "logging/log.hpp"

  29 #include "oops/oop.inline.hpp"
  30 #include "runtime/handles.inline.hpp"
  31 #include "runtime/java.hpp"
  32 #include "runtime/mutex.hpp"
  33 #include "runtime/mutexLocker.hpp"
  34 #include "runtime/os.hpp"
  35 #include "runtime/perfData.inline.hpp"
  36 #include "utilities/exceptions.hpp"
  37 #include "utilities/globalDefinitions.hpp"
  38 
  39 PerfDataList*   PerfDataManager::_all = NULL;
  40 PerfDataList*   PerfDataManager::_sampled = NULL;
  41 PerfDataList*   PerfDataManager::_constants = NULL;
  42 volatile bool   PerfDataManager::_has_PerfData = 0;
  43 
  44 /*
  45  * The jvmstat global and subsystem jvmstat counter name spaces. The top
  46  * level name spaces imply the interface stability level of the counter,
  47  * which generally follows the Java package, class, and property naming
  48  * conventions. The CounterNS enumeration values should be used to index




   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #include "precompiled.hpp"
  26 #include "jvm.h"
  27 #include "classfile/vmSymbols.hpp"
  28 #include "logging/log.hpp"
  29 #include "memory/allocation.inline.hpp"
  30 #include "oops/oop.inline.hpp"
  31 #include "runtime/handles.inline.hpp"
  32 #include "runtime/java.hpp"
  33 #include "runtime/mutex.hpp"
  34 #include "runtime/mutexLocker.hpp"
  35 #include "runtime/os.hpp"
  36 #include "runtime/perfData.inline.hpp"
  37 #include "utilities/exceptions.hpp"
  38 #include "utilities/globalDefinitions.hpp"
  39 
  40 PerfDataList*   PerfDataManager::_all = NULL;
  41 PerfDataList*   PerfDataManager::_sampled = NULL;
  42 PerfDataList*   PerfDataManager::_constants = NULL;
  43 volatile bool   PerfDataManager::_has_PerfData = 0;
  44 
  45 /*
  46  * The jvmstat global and subsystem jvmstat counter name spaces. The top
  47  * level name spaces imply the interface stability level of the counter,
  48  * which generally follows the Java package, class, and property naming
  49  * conventions. The CounterNS enumeration values should be used to index


< prev index next >