diff options
author | Jim Keniston <jkenisto@us.ibm.com> | 2008-09-15 02:29:29 -0700 |
---|---|---|
committer | Jim Keniston <jkenisto@us.ibm.com> | 2008-09-15 02:29:29 -0700 |
commit | 553987ef137f6d80b6133a97864942f865e60ece (patch) | |
tree | 5b471373c3640a8f30141a604667910e3d69aaee /testsuite/systemtap.base | |
parent | c79cd4b878c3d4e66fd9203107b078734cfbe0a1 (diff) | |
parent | 8844346125b135280bee9fee12cbdbceb750d898 (diff) | |
download | systemtap-steved-553987ef137f6d80b6133a97864942f865e60ece.tar.gz systemtap-steved-553987ef137f6d80b6133a97864942f865e60ece.tar.xz systemtap-steved-553987ef137f6d80b6133a97864942f865e60ece.zip |
Merge branch 'master' of ssh://kenistoj@sources.redhat.com/git/systemtap
Diffstat (limited to 'testsuite/systemtap.base')
-rwxr-xr-x | testsuite/systemtap.base/uprobes.stp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuite/systemtap.base/uprobes.stp b/testsuite/systemtap.base/uprobes.stp index 32bc1a70..b609f3a1 100755 --- a/testsuite/systemtap.base/uprobes.stp +++ b/testsuite/systemtap.base/uprobes.stp @@ -1,3 +1,3 @@ #! stap -p4 -probe process("./jennie").function("main").call { log(pp()." ".$$parms) } -probe process("./jennie").function("main").return { log(pp()." ".$$return) } +probe process("./jennie").function("main").call { printf("%s %s\n",pp(),$$parms) } +probe process("./jennie").function("main").return { printf("%s %s\n",pp(),$$return) } |