summaryrefslogtreecommitdiffstats
path: root/main.cxx
diff options
context:
space:
mode:
authorfche <fche>2005-08-03 22:14:41 +0000
committerfche <fche>2005-08-03 22:14:41 +0000
commitd5d7c2cc6123580686d5934d83e2b41a8a90cfbb (patch)
tree422cea4c21dfe40927a5bf90784edd796ee2c45c /main.cxx
parent863c02e866122ff21bcba6253b8addfd39703136 (diff)
downloadsystemtap-steved-d5d7c2cc6123580686d5934d83e2b41a8a90cfbb.tar.gz
systemtap-steved-d5d7c2cc6123580686d5934d83e2b41a8a90cfbb.tar.xz
systemtap-steved-d5d7c2cc6123580686d5934d83e2b41a8a90cfbb.zip
2005-08-03 Frank Ch. Eigler <fche@redhat.com>
* stap.1: More meat, all stub sections filled. * elaborate.cxx (visit_assignment): Add numerous missing cases. * parse.cxx: Parse ".=" operator. * testsuite/semok/sixteen.stp: Check them. * main.cxx (usage): Don't show incompletely supported options.
Diffstat (limited to 'main.cxx')
-rw-r--r--main.cxx9
1 files changed, 5 insertions, 4 deletions
diff --git a/main.cxx b/main.cxx
index e1d79b26..7e2a1ec9 100644
--- a/main.cxx
+++ b/main.cxx
@@ -50,7 +50,8 @@ usage (systemtap_session& s)
<< " -- no more options after this" << endl
<< " -v verbose" << (s.verbose ? " [set]" : "")
<< endl
- << " -t test mode" << (s.test_mode ? " [set]" : "") << endl
+ << " -k keep temporary directory" << endl
+ // << " -t test mode" << (s.test_mode ? " [set]" : "") << endl
<< " -g guru mode" << (s.guru_mode ? " [set]" : "") << endl
<< " -p NUM stop after pass NUM 1-5" << endl
<< " (parse, elaborate, translate, compile, run)" << endl
@@ -64,12 +65,12 @@ usage (systemtap_session& s)
clog
<< " -R DIR look in DIR for runtime, instead of" << endl
<< " " << s.runtime_path << endl
- << " -r RELEASE use kernel RELEASE, instead of" << endl
- << " " << s.kernel_release << endl
+ // << " -r RELEASE use kernel RELEASE, instead of" << endl
+ // << " " << s.kernel_release << endl
<< " -m MODULE set probe module name, instead of" << endl
<< " " << s.module_name << endl
<< " -o FILE send output to file instead of stdout" << endl
- << " -k keep temporary directory" << endl;
+ ;
// -d: dump safety-related external references
exit (0);