Path: blob/main/cddl/contrib/opensolaris/lib/libdtrace/common/dt_pid.h
39562 views
/*1* CDDL HEADER START2*3* The contents of this file are subject to the terms of the4* Common Development and Distribution License, Version 1.0 only5* (the "License"). You may not use this file except in compliance6* with the License.7*8* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE9* or http://www.opensolaris.org/os/licensing.10* See the License for the specific language governing permissions11* and limitations under the License.12*13* When distributing Covered Code, include this CDDL HEADER in each14* file and include the License file at usr/src/OPENSOLARIS.LICENSE.15* If applicable, add the following below this CDDL HEADER, with the16* fields enclosed by brackets "[]" replaced with your own identifying17* information: Portions Copyright [yyyy] [name of copyright owner]18*19* CDDL HEADER END20*/2122/*23* Copyright 2006 Sun Microsystems, Inc. All rights reserved.24* Use is subject to license terms.25*/26/*27* Copyright (c) 2013, Joyent, Inc. All rights reserved.28*/2930#ifndef _DT_PID_H31#define _DT_PID_H3233#include <libproc.h>34#include <sys/fasttrap.h>35#include <dt_impl.h>3637#ifdef __cplusplus38extern "C" {39#endif4041#define DT_PROC_ERR (-1)42#define DT_PROC_ALIGN (-2)4344extern int dt_pid_create_probes(dtrace_probedesc_t *, dtrace_hdl_t *,45dt_pcb_t *pcb);46extern int dt_pid_create_probes_module(dtrace_hdl_t *, dt_proc_t *);4748extern int dt_pid_create_entry_probe(struct ps_prochandle *, dtrace_hdl_t *,49fasttrap_probe_spec_t *, const GElf_Sym *);5051extern int dt_pid_create_return_probe(struct ps_prochandle *, dtrace_hdl_t *,52fasttrap_probe_spec_t *, const GElf_Sym *, uint64_t *);5354extern int dt_pid_create_offset_probe(struct ps_prochandle *, dtrace_hdl_t *,55fasttrap_probe_spec_t *, const GElf_Sym *, ulong_t);5657extern int dt_pid_create_glob_offset_probes(struct ps_prochandle *,58dtrace_hdl_t *, fasttrap_probe_spec_t *, const GElf_Sym *, const char *);5960extern void dt_pid_get_types(dtrace_hdl_t *, const dtrace_probedesc_t *,61dtrace_argdesc_t *, int *);6263#ifdef __cplusplus64}65#endif6667#endif /* _DT_PID_H */686970