diff options
author | Frank Ch. Eigler <fche@elastic.org> | 2008-09-05 14:49:04 -0400 |
---|---|---|
committer | Frank Ch. Eigler <fche@elastic.org> | 2008-09-05 14:49:04 -0400 |
commit | 40be866ffcfc21a15836643cc7c2437ed5c91e8f (patch) | |
tree | 8f5add1619e2650e1dcdcdefb53c0d0887f31d8e /testsuite/systemtap.base/uprobes.stp | |
parent | 337cd273963410c9a1fa46b10287e72c146df054 (diff) | |
download | systemtap-steved-40be866ffcfc21a15836643cc7c2437ed5c91e8f.tar.gz systemtap-steved-40be866ffcfc21a15836643cc7c2437ed5c91e8f.tar.xz systemtap-steved-40be866ffcfc21a15836643cc7c2437ed5c91e8f.zip |
PR4255: uprobes test case
Diffstat (limited to 'testsuite/systemtap.base/uprobes.stp')
-rwxr-xr-x | testsuite/systemtap.base/uprobes.stp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/testsuite/systemtap.base/uprobes.stp b/testsuite/systemtap.base/uprobes.stp new file mode 100755 index 00000000..957cbe16 --- /dev/null +++ b/testsuite/systemtap.base/uprobes.stp @@ -0,0 +1,3 @@ +#! stap -p4 +probe process("./jennie").function("main").call { log (pp() . " " . $$parms) } +probe process("./jennie").function("main").return { log (pp() . " " . $$return) } |