summaryrefslogtreecommitdiffstats
path: root/session.h
diff options
context:
space:
mode:
authorFrank Ch. Eigler <fche@elastic.org>2008-04-24 13:08:02 -0400
committerFrank Ch. Eigler <fche@elastic.org>2008-06-23 17:37:17 -0400
commita8368458b976929634935d66202d27927e3c2ed9 (patch)
treeeb25397b6a29de2cdd55239deedb5b884fe21f9b /session.h
parent6b4b4f4a9e8d56db4050cf66572604708f483115 (diff)
downloadsystemtap-steved-a8368458b976929634935d66202d27927e3c2ed9.tar.gz
systemtap-steved-a8368458b976929634935d66202d27927e3c2ed9.tar.xz
systemtap-steved-a8368458b976929634935d66202d27927e3c2ed9.zip
add module-name vector to session object, command line arguments
Diffstat (limited to 'session.h')
-rw-r--r--session.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/session.h b/session.h
index 58bc7ac5..2b61a85f 100644
--- a/session.h
+++ b/session.h
@@ -164,7 +164,10 @@ struct systemtap_session
Dwarf_Addr sym_kprobes_text_end;
Dwarf_Addr sym_stext;
+ // List of libdwfl module names to extract symbol/unwind data for.
+ std::vector<std::string> unwindsym_modules;
struct module_cache* module_cache;
+
std::set<std::string> seen_errors;
std::set<std::string> seen_warnings;
unsigned num_errors () { return seen_errors.size(); }