From 43f283847eaa4d83a790698befad1427fe5af667 Mon Sep 17 00:00:00 2001 From: midipix Date: Sat, 19 Dec 2015 08:28:11 -0500 Subject: driver: mdso_create_symbol_vector(): initial implementation. --- src/internal/mdso_driver_impl.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/internal') diff --git a/src/internal/mdso_driver_impl.h b/src/internal/mdso_driver_impl.h index 2c4554f..aa09197 100644 --- a/src/internal/mdso_driver_impl.h +++ b/src/internal/mdso_driver_impl.h @@ -12,6 +12,11 @@ enum app_tags { TAG_VERSION, }; +struct mdso_expsyms { + char * buffer; + const char * syms[]; +}; + struct mdso_driver_ctx_impl { struct mdso_common_ctx cctx; struct mdso_driver_ctx ctx; @@ -20,6 +25,7 @@ struct mdso_driver_ctx_impl { struct mdso_unit_ctx_impl { const char * path; struct mdso_input map; + struct mdso_expsyms * expsyms; struct mdso_common_ctx cctx; struct mdso_unit_ctx uctx; }; -- cgit v1.2.3