From 88a08813800ed7ba7c927986421cee437f7f2233 Mon Sep 17 00:00:00 2001 From: Andy Fiddaman Date: Fri, 4 Dec 2020 11:41:39 +0000 Subject: 13363 ctfconvert could support more granular ignore for missing debug data Reviewed by: Robert Mustacchi Approved by: Rich Lowe --- usr/src/lib/libctf/common/libctf_impl.h | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'usr/src/lib/libctf/common/libctf_impl.h') 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 #include #include +#include #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; }; -- cgit v1.2.3