From a8368458b976929634935d66202d27927e3c2ed9 Mon Sep 17 00:00:00 2001 From: "Frank Ch. Eigler" Date: Thu, 24 Apr 2008 13:08:02 -0400 Subject: add module-name vector to session object, command line arguments --- session.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'session.h') 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 unwindsym_modules; struct module_cache* module_cache; + std::set seen_errors; std::set seen_warnings; unsigned num_errors () { return seen_errors.size(); } -- cgit