summaryrefslogtreecommitdiffstats
path: root/elaborate.h
diff options
context:
space:
mode:
authorhunt <hunt>2005-09-06 17:40:12 +0000
committerhunt <hunt>2005-09-06 17:40:12 +0000
commit4c5ff1bb5bb35cb35e30c45e385043c5f8383cd0 (patch)
treea6696d16ece8e98844a6bac3ac550f0bd99f77c9 /elaborate.h
parentc0b3ea3235ced04f5f372c98c5ea321e2da22c59 (diff)
downloadsystemtap-steved-4c5ff1bb5bb35cb35e30c45e385043c5f8383cd0.tar.gz
systemtap-steved-4c5ff1bb5bb35cb35e30c45e385043c5f8383cd0.tar.xz
systemtap-steved-4c5ff1bb5bb35cb35e30c45e385043c5f8383cd0.zip
2005-09-06 Martin Hunt <hunt@redhat.com>
* tapset/context.stp: Add function target(). * stapfuncs.5.in (target): Document it. * elaborate.h (struct systemtap_session): Add cmd and target_pid to the struct. * main.cxx (usage): Add secriptions of "-c" and "-x" options. (main): Set s.cmd and s.target_pid. * buildrun.cxx (stringify): Copy this utility func here too. (run_pass): Add new options to set cmd and pid to the stpd command line.
Diffstat (limited to 'elaborate.h')
-rw-r--r--elaborate.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/elaborate.h b/elaborate.h
index 43816e61..6482952c 100644
--- a/elaborate.h
+++ b/elaborate.h
@@ -206,6 +206,8 @@ struct systemtap_session
std::string kernel_release;
std::string runtime_path;
std::string module_name;
+ std::string cmd;
+ int target_pid;
int last_pass;
bool test_mode;
bool verbose;