diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | main.cxx | 9 |
2 files changed, 15 insertions, 0 deletions
@@ -1,3 +1,9 @@ +2006-11-30 David Smith <dsmith@redhat.com> + + * main.cxx (printscript): Prints global embedded code. Not + printing the global embedded code was causing bad caching + behavior. + 2006-11-29 David Smith <dsmith@redhat.com> * tapsets.cxx (struct dwarf_var_expanding_copy_visitor): Added @@ -108,6 +108,15 @@ usage (systemtap_session& s, int exitcode) static void printscript(systemtap_session& s, ostream& o) { + if (s.embeds.size() > 0) + o << "# global embedded code" << endl; + for (unsigned i=0; i<s.embeds.size(); i++) + { + embeddedcode* ec = s.embeds[i]; + ec->print (o); + o << endl; + } + if (s.globals.size() > 0) o << "# globals" << endl; for (unsigned i=0; i<s.globals.size(); i++) |