Path: blob/aarch64-shenandoah-jdk8u272-b10/hotspot/src/os/bsd/dtrace/jvm_dtrace.h
32284 views
/*1* Copyright (c) 2006, 2010, Oracle and/or its affiliates. All rights reserved.2* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.3*4* This code is free software; you can redistribute it and/or modify it5* under the terms of the GNU General Public License version 2 only, as6* published by the Free Software Foundation.7*8* This code is distributed in the hope that it will be useful, but WITHOUT9* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or10* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License11* version 2 for more details (a copy is included in the LICENSE file that12* accompanied this code).13*14* You should have received a copy of the GNU General Public License version15* 2 along with this work; if not, write to the Free Software Foundation,16* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.17*18* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA19* or visit www.oracle.com if you need additional information or have any20* questions.21*22*/2324#ifndef _JVM_DTRACE_H_25#define _JVM_DTRACE_H_2627/*28* Interface to dynamically turn on probes in Hotspot JVM. Currently,29* this interface can be used to dynamically enable certain DTrace30* probe points that are costly to have "always on".31*/3233#ifdef __cplusplus34extern "C" {35#endif3637#include <sys/types.h>383940struct _jvm_t;41typedef struct _jvm_t jvm_t;424344/* Attach to the given JVM process. Returns NULL on failure.45jvm_get_last_error() returns last error message. */46jvm_t* jvm_attach(pid_t pid);4748/* Returns the last error message from this library or NULL if none. */49const char* jvm_get_last_error();5051/* few well-known probe type constants for 'probe_types' param below */5253#define JVM_DTPROBE_METHOD_ENTRY "method-entry"54#define JVM_DTPROBE_METHOD_RETURN "method-return"55#define JVM_DTPROBE_MONITOR_ENTER "monitor-contended-enter"56#define JVM_DTPROBE_MONITOR_ENTERED "monitor-contended-entered"57#define JVM_DTPROBE_MONITOR_EXIT "monitor-contended-exit"58#define JVM_DTPROBE_MONITOR_WAIT "monitor-wait"59#define JVM_DTPROBE_MONITOR_WAITED "monitor-waited"60#define JVM_DTPROBE_MONITOR_NOTIFY "monitor-notify"61#define JVM_DTPROBE_MONITOR_NOTIFYALL "monitor-notifyall"62#define JVM_DTPROBE_OBJECT_ALLOC "object-alloc"63#define JVM_DTPROBE_ALL "*"6465/* Enable the specified DTrace probes of given probe types on66* the specified JVM. Returns >= 0 on success, -1 on failure.67* On success, this returns number of probe_types enabled.68* On failure, jvm_get_last_error() returns the last error message.69*/70int jvm_enable_dtprobes(jvm_t* jvm, int num_probe_types, const char** probe_types);7172/* Note: There is no jvm_disable_dtprobes function. Probes are automatically73* disabled when there are no more clients requiring those probes.74*/7576/* Detach the given JVM. Returns 0 on success, -1 on failure.77* jvm_get_last_error() returns the last error message.78*/79int jvm_detach(jvm_t* jvm);8081#ifdef __cplusplus82}83#endif8485#endif /* _JVM_DTRACE_H_ */868788