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. --- main.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'main.cxx') diff --git a/main.cxx b/main.cxx index b15c9185..50d6a792 100644 --- a/main.cxx +++ b/main.cxx @@ -90,7 +90,7 @@ usage (systemtap_session& s, int exitcode) << " -D NM=VAL emit macro definition into generated C code" << endl << " -R DIR look in DIR for runtime, instead of" << endl << " " << s.runtime_path << endl - << " -r RELEASE use kernel RELEASE, instead of " + << " -r RELEASE cross-compile to kernel RELEASE, instead of " << s.kernel_release << endl << " -m MODULE set probe module name, instead of " << s.module_name << endl @@ -426,8 +426,8 @@ main (int argc, char * const argv []) if (s.last_pass > 4 && release_changed) { - cerr << ("Warning: changing last pass to 4 since the kernel release" - " has changed.") << endl; + if (s.verbose) + cerr << "Warning: changing last pass to 4 since cross-compiling" << endl; s.last_pass = 4; } -- cgit