From 405b71b8a7691e59409ae52ddfb2787189fb2dd9 Mon Sep 17 00:00:00 2001 From: "Frank Ch. Eigler" Date: Mon, 23 Jun 2008 14:03:37 -0400 Subject: make module_cache a session field rather than plain static --- session.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'session.h') diff --git a/session.h b/session.h index e49b50d7..58bc7ac5 100644 --- a/session.h +++ b/session.h @@ -43,6 +43,7 @@ struct embeddedcode; struct translator_output; struct unparser; struct semantic_error; +struct module_cache; // XXX: a generalized form of this descriptor could be associated with @@ -163,6 +164,7 @@ struct systemtap_session Dwarf_Addr sym_kprobes_text_end; Dwarf_Addr sym_stext; + struct module_cache* module_cache; std::set seen_errors; std::set seen_warnings; unsigned num_errors () { return seen_errors.size(); } -- cgit