summaryrefslogtreecommitdiffstats
path: root/testsuite/systemtap.base/bz5274.stp
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/systemtap.base/bz5274.stp')
-rwxr-xr-xtestsuite/systemtap.base/bz5274.stp8
1 files changed, 8 insertions, 0 deletions
diff --git a/testsuite/systemtap.base/bz5274.stp b/testsuite/systemtap.base/bz5274.stp
new file mode 100755
index 00000000..b3e26d83
--- /dev/null
+++ b/testsuite/systemtap.base/bz5274.stp
@@ -0,0 +1,8 @@
+#! /bin/env stap
+probe process("./bz5274").function("*").call {
+ printf("%s Entering %s\n", pp(), thread_indent(1))
+}
+probe process("./bz5274").function("*").return {
+ printf("%s %s returns %s\n", pp(), thread_indent(-1), returnstr(2))
+}
+