src/share/vm/runtime/dtraceJSDT.cpp

Print this page
rev 6670 : 8049325: Introduce and clean up umbrella headers for the files in the cpu subdirectories.
Reviewed-by: lfoltan, coleenp, dholmes


   8  *
   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/javaClasses.hpp"
  27 #include "code/codeBlob.hpp"

  28 #include "memory/allocation.hpp"
  29 #include "prims/jvm.h"
  30 #include "runtime/dtraceJSDT.hpp"
  31 #include "runtime/jniHandles.hpp"
  32 #include "runtime/os.hpp"
  33 #include "utilities/exceptions.hpp"
  34 #include "utilities/globalDefinitions.hpp"
  35 #include "utilities/utf8.hpp"
  36 
  37 #ifdef HAVE_DTRACE_H
  38 
  39 jlong DTraceJSDT::activate(
  40     jint version, jstring module_name, jint providers_count,
  41     JVM_DTraceProvider* providers, TRAPS) {
  42 
  43   size_t count = 0;
  44   RegisteredProbes* probes = NULL;
  45 
  46   if (!is_supported()) {
  47     return 0;




   8  *
   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/javaClasses.hpp"
  27 #include "code/codeBlob.hpp"
  28 #include "code/nativeInst.hpp"
  29 #include "memory/allocation.hpp"
  30 #include "prims/jvm.h"
  31 #include "runtime/dtraceJSDT.hpp"
  32 #include "runtime/jniHandles.hpp"
  33 #include "runtime/os.hpp"
  34 #include "utilities/exceptions.hpp"
  35 #include "utilities/globalDefinitions.hpp"
  36 #include "utilities/utf8.hpp"
  37 
  38 #ifdef HAVE_DTRACE_H
  39 
  40 jlong DTraceJSDT::activate(
  41     jint version, jstring module_name, jint providers_count,
  42     JVM_DTraceProvider* providers, TRAPS) {
  43 
  44   size_t count = 0;
  45   RegisteredProbes* probes = NULL;
  46 
  47   if (!is_supported()) {
  48     return 0;