diff options
author | midipix <writeonce@midipix.org> | 2015-12-19 08:28:11 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-11-11 00:22:29 -0500 |
commit | 43f283847eaa4d83a790698befad1427fe5af667 (patch) | |
tree | 95f9b37b2854e8b3975915bddfaf2386158bc7d0 /src/internal | |
parent | 14073fe30b3cb3de5bfa152083b1f24b943fba1d (diff) | |
download | mdso-43f283847eaa4d83a790698befad1427fe5af667.tar.bz2 mdso-43f283847eaa4d83a790698befad1427fe5af667.tar.xz |
driver: mdso_create_symbol_vector(): initial implementation.
Diffstat (limited to 'src/internal')
-rw-r--r-- | src/internal/mdso_driver_impl.h | 6 |
1 files changed, 6 insertions, 0 deletions
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; }; |