kamg@551: /* stefank@2314: * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved. kamg@551: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. kamg@551: * kamg@551: * This code is free software; you can redistribute it and/or modify it kamg@551: * under the terms of the GNU General Public License version 2 only, as kamg@551: * published by the Free Software Foundation. kamg@551: * kamg@551: * This code is distributed in the hope that it will be useful, but WITHOUT kamg@551: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or kamg@551: * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License kamg@551: * version 2 for more details (a copy is included in the LICENSE file that kamg@551: * accompanied this code). kamg@551: * kamg@551: * You should have received a copy of the GNU General Public License version kamg@551: * 2 along with this work; if not, write to the Free Software Foundation, kamg@551: * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. kamg@551: * trims@1907: * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA trims@1907: * or visit www.oracle.com if you need additional information or have any trims@1907: * questions. kamg@551: * kamg@551: */ kamg@551: stefank@2314: #include "precompiled.hpp" stefank@2314: #include "classfile/javaClasses.hpp" stefank@2314: #include "code/codeBlob.hpp" stefank@2314: #include "memory/allocation.hpp" stefank@2314: #include "prims/jvm.h" stefank@2314: #include "runtime/dtraceJSDT.hpp" stefank@2314: #include "runtime/jniHandles.hpp" stefank@2314: #include "runtime/os.hpp" stefank@2314: #include "runtime/signature.hpp" stefank@2314: #include "utilities/globalDefinitions.hpp" kamg@551: kamg@551: int DTraceJSDT::pd_activate( kamg@551: void* baseAddress, jstring module, kamg@551: jint providers_count, JVM_DTraceProvider* providers) { kamg@551: return -1; kamg@551: } kamg@551: kamg@551: void DTraceJSDT::pd_dispose(int handle) { kamg@551: } kamg@551: kamg@551: jboolean DTraceJSDT::pd_is_supported() { kamg@551: return false; kamg@551: }