summaryrefslogtreecommitdiff
path: root/usr/src/lib/libctf/common/libctf_impl.h
diff options
context:
space:
mode:
authorAndy Fiddaman <omnios@citrus-it.co.uk>2020-12-04 11:41:39 +0000
committerAndy Fiddaman <omnios@citrus-it.co.uk>2020-12-17 21:18:56 +0000
commit88a08813800ed7ba7c927986421cee437f7f2233 (patch)
tree5ee2cc36e4a8aa6c6f35f47268f4912f1ab44b08 /usr/src/lib/libctf/common/libctf_impl.h
parent3dd4cd56e7843e01a8ab147a0d102cd4f6d732c1 (diff)
downloadillumos-joyent-88a08813800ed7ba7c927986421cee437f7f2233.tar.gz
13363 ctfconvert could support more granular ignore for missing debug data
Reviewed by: Robert Mustacchi <rm@fingolfin.org> Approved by: Rich Lowe <richlowe@richlowe.net>
Diffstat (limited to 'usr/src/lib/libctf/common/libctf_impl.h')
-rw-r--r--usr/src/lib/libctf/common/libctf_impl.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/usr/src/lib/libctf/common/libctf_impl.h b/usr/src/lib/libctf/common/libctf_impl.h
index 6ed2665d11..8028dc0f8f 100644
--- a/usr/src/lib/libctf/common/libctf_impl.h
+++ b/usr/src/lib/libctf/common/libctf_impl.h
@@ -25,17 +25,24 @@
#include <libelf.h>
#include <libctf.h>
#include <ctf_impl.h>
+#include <sys/list.h>
#ifdef __cplusplus
extern "C" {
#endif
+typedef struct ctf_convert_filelist {
+ list_node_t ccf_node;
+ char *ccf_basename;
+} ctf_convert_filelist_t;
+
struct ctf_convert_handle {
char *cch_label;
uint_t cch_flags;
uint_t cch_nthreads;
uint_t cch_batchsize;
ctf_convert_warn_f cch_warncb;
+ list_t cch_nodebug;
void *cch_warncb_arg;
};