diff options
author | Robert Mustacchi <rm@joyent.com> | 2014-07-12 00:48:08 +0000 |
---|---|---|
committer | Robert Mustacchi <rm@joyent.com> | 2014-07-18 22:22:02 +0000 |
commit | 4bd0c2b79d9b19403df4764e4b7941b29abe4a80 (patch) | |
tree | 2780b304153df871a1dcc9ec991ae4ff57211d7f /usr/src/common/ctf/ctf_impl.h | |
parent | 1fba5429ccf7095093d8035f56380cf7b125f0f2 (diff) | |
download | illumos-joyent-4bd0c2b79d9b19403df4764e4b7941b29abe4a80.tar.gz |
OS-3203 want check target for verifying structures are the same in ILP32 and LP64
Reviewed by: Keith M Wesolowski <wesolows@foobazco.org>
Diffstat (limited to 'usr/src/common/ctf/ctf_impl.h')
-rw-r--r-- | usr/src/common/ctf/ctf_impl.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/usr/src/common/ctf/ctf_impl.h b/usr/src/common/ctf/ctf_impl.h index f56fa6a005..42aec80a43 100644 --- a/usr/src/common/ctf/ctf_impl.h +++ b/usr/src/common/ctf/ctf_impl.h @@ -25,7 +25,7 @@ * Use is subject to license terms. */ /* - * Copyright (c) 2012, Joyent, Inc. All rights reserved. + * Copyright (c) 2014, Joyent, Inc. All rights reserved. */ #ifndef _CTF_IMPL_H @@ -77,6 +77,10 @@ typedef struct ctf_hash { uint_t h_free; /* index of next free hash element */ } ctf_hash_t; +struct ctf_idhash_iter { + int cii_id; /* Current iteration id */ +}; + typedef struct ctf_strs { const char *cts_strs; /* base address of string table */ size_t cts_len; /* size of string table in bytes */ |