< prev index next >

src/share/vm/runtime/perfData.cpp

Print this page
rev 13107 : imported patch jvm_h


   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 "classfile/vmSymbols.hpp"
  27 #include "logging/log.hpp"
  28 #include "oops/oop.inline.hpp"

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




   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 "classfile/vmSymbols.hpp"
  27 #include "logging/log.hpp"
  28 #include "oops/oop.inline.hpp"
  29 #include "prims/jvm.h"
  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.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
  49  * into this array.


< prev index next >