summaryrefslogtreecommitdiffhomepage
path: root/src/internal/mdso_driver_impl.h
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2015-12-19 08:28:11 -0500
committermidipix <writeonce@midipix.org>2016-11-11 00:22:29 -0500
commit43f283847eaa4d83a790698befad1427fe5af667 (patch)
tree95f9b37b2854e8b3975915bddfaf2386158bc7d0 /src/internal/mdso_driver_impl.h
parent14073fe30b3cb3de5bfa152083b1f24b943fba1d (diff)
downloadmdso-43f283847eaa4d83a790698befad1427fe5af667.tar.bz2
mdso-43f283847eaa4d83a790698befad1427fe5af667.tar.xz
driver: mdso_create_symbol_vector(): initial implementation.
Diffstat (limited to 'src/internal/mdso_driver_impl.h')
-rw-r--r--src/internal/mdso_driver_impl.h6
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;
};