From b8da0ad19d9dfcf88c4cd6dcf7b8aa73fc5016d7 Mon Sep 17 00:00:00 2001 From: fche Date: Fri, 30 Mar 2007 19:17:02 +0000 Subject: 2007-03-30 Frank Ch. Eigler PR 1570 * NEWS: Document probe handler language change re. inline functions. * stapprobes.5.in: Likewise. * tapsets.cxx: Many changes to simplify caches and implement new handling of inline functions, removed of stubs for future probes. * elaborate.cxx (derived_probe printsig_nested): New function. * elaborate.h: Declare it. * main.cxx (usage): Clarify "-r" meaning. (main): Tweak related "-p 4" message. 2007-03-30 Frank Ch. Eigler PR 1570. * memory.stp, scheduler.stp, signal.stp, LKET/signal.stp: Adapt to .inline -> .function change. 2007-03-30 Frank Ch. Eigler PR 1570 * */*.stp: Adapt to .inline -> .function change. * lib/stap_run.exp, stap_run2.exp, stap_run_binary.exp: Shorten pass/fail dejagnu log lines. * systemtap.syscall/sys.stp, test.tcl: Make slightly more compatible and failure more verbose. --- elaborate.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'elaborate.h') diff --git a/elaborate.h b/elaborate.h index 9ad3c038..65ccb2f6 100644 --- a/elaborate.h +++ b/elaborate.h @@ -115,7 +115,9 @@ struct derived_probe: public probe virtual probe* basest () { return base->basest(); } virtual ~derived_probe () {} virtual void join_group (systemtap_session& s) = 0; - virtual probe_point* sole_location (); + virtual probe_point* sole_location () const; + virtual void printsig (std::ostream &o) const; + void printsig_nested (std::ostream &o) const; virtual void emit_probe_context_vars (translator_output*) {} // From within unparser::emit_common_header, add any extra variables -- cgit