diff options
author | Martin Matuska <mm@FreeBSD.org> | 2012-07-18 09:16:47 +0000 |
---|---|---|
committer | Martin Matuska <mm@FreeBSD.org> | 2012-07-18 09:16:47 +0000 |
commit | 77225241cd47b9d06c05bd568fc057328c0c65e5 (patch) | |
tree | 7b21d952f88eed0f80743c1b974b35495a428e72 /lib/libdtrace/common/dtrace.h | |
parent | 5bb19a17c049cd92ccbd811a6bd0daf69ac899c1 (diff) | |
parent | 93a00b0821525e25814cd720fafd04d600811c28 (diff) |
Notes
Diffstat (limited to 'lib/libdtrace/common/dtrace.h')
-rw-r--r-- | lib/libdtrace/common/dtrace.h | 19 |
1 files changed, 2 insertions, 17 deletions
diff --git a/lib/libdtrace/common/dtrace.h b/lib/libdtrace/common/dtrace.h index 87df1ca4402a..1c041207c0ae 100644 --- a/lib/libdtrace/common/dtrace.h +++ b/lib/libdtrace/common/dtrace.h @@ -24,13 +24,11 @@ * Use is subject to license terms. */ -/* - * Copyright (c) 2011, Joyent, Inc. All rights reserved. - */ - #ifndef _DTRACE_H #define _DTRACE_H +#pragma ident "%Z%%M% %I% %E% SMI" + #include <sys/dtrace.h> #include <stdarg.h> #include <stdio.h> @@ -150,7 +148,6 @@ typedef struct dtrace_stmtdesc { dtrace_actdesc_t *dtsd_action_last; /* last action in action list */ void *dtsd_aggdata; /* aggregation data */ void *dtsd_fmtdata; /* type-specific output data */ - void *dtsd_strdata; /* type-specific string data */ void (*dtsd_callback)(); /* callback function for EPID */ void *dtsd_data; /* callback data pointer */ dtrace_attribute_t dtsd_descattr; /* probedesc attributes */ @@ -243,18 +240,6 @@ extern int dtrace_freopen(dtrace_hdl_t *, FILE *, void *, const void *, size_t); /* - * Type-specific output printing - * - * The print() action will associate a string data record that is actually the - * fully-qualified type name of the data traced by the DIFEXPR action. This is - * stored in the same 'format' record from the kernel, but we know by virtue of - * the fact that the action is still DIFEXPR that it is actually a reference to - * plain string data. - */ -extern int dtrace_print(dtrace_hdl_t *, FILE *, const char *, - caddr_t, size_t); - -/* * DTrace Work Interface */ typedef enum { |