diff options
author | Robert Mustacchi <rm@joyent.com> | 2012-11-21 22:05:21 +0000 |
---|---|---|
committer | Robert Mustacchi <rm@joyent.com> | 2012-11-21 22:05:21 +0000 |
commit | c9b5e96c15bb6567575976b216ad5ab119519ec6 (patch) | |
tree | 59c94ec5430e59c6d984135f6ce52912986ed04e /usr/src/common/ctf/ctf_impl.h | |
parent | 66bbd2b9c817e75f72b055981eb23eaee4f74846 (diff) | |
download | illumos-joyent-c9b5e96c15bb6567575976b216ad5ab119519ec6.tar.gz |
OS-1474 Want ::typedef (backout, breaks dtrace)
Diffstat (limited to 'usr/src/common/ctf/ctf_impl.h')
-rw-r--r-- | usr/src/common/ctf/ctf_impl.h | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/usr/src/common/ctf/ctf_impl.h b/usr/src/common/ctf/ctf_impl.h index f56fa6a005..99990806a3 100644 --- a/usr/src/common/ctf/ctf_impl.h +++ b/usr/src/common/ctf/ctf_impl.h @@ -24,13 +24,12 @@ * Copyright 2006 Sun Microsystems, Inc. All rights reserved. * Use is subject to license terms. */ -/* - * Copyright (c) 2012, Joyent, Inc. All rights reserved. - */ #ifndef _CTF_IMPL_H #define _CTF_IMPL_H +#pragma ident "%Z%%M% %I% %E% SMI" + #include <sys/types.h> #include <sys/errno.h> #include <sys/sysmacros.h> @@ -150,7 +149,6 @@ typedef struct ctf_dtdef { char *dtd_name; /* name associated with definition (if any) */ ctf_id_t dtd_type; /* type identifier for this definition */ ctf_type_t dtd_data; /* type node (see <sys/ctf.h>) */ - int dtd_ref; /* recfount for dyanmic types */ union { ctf_list_t dtu_members; /* struct, union, or enum */ ctf_arinfo_t dtu_arr; /* array */ @@ -271,9 +269,7 @@ enum { ECTF_DTFULL, /* CTF type is full (no more members allowed) */ ECTF_FULL, /* CTF container is full */ ECTF_DUPMEMBER, /* duplicate member name definition */ - ECTF_CONFLICT, /* conflicting type definition present */ - ECTF_REFERENCED, /* type has outstanding references */ - ECTF_NOTDYN /* type is not a dynamic type */ + ECTF_CONFLICT /* conflicting type definition present */ }; extern ssize_t ctf_get_ctt_size(const ctf_file_t *, const ctf_type_t *, |