summaryrefslogtreecommitdiffstats
path: root/testsuite/systemtap.syscall/sys.stp
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/systemtap.syscall/sys.stp')
-rwxr-xr-xtestsuite/systemtap.syscall/sys.stp4
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuite/systemtap.syscall/sys.stp b/testsuite/systemtap.syscall/sys.stp
index ab822ebb..e3564a15 100755
--- a/testsuite/systemtap.syscall/sys.stp
+++ b/testsuite/systemtap.syscall/sys.stp
@@ -11,7 +11,7 @@ probe begin {
}
-probe syscall.* {
+probe syscall.* ? {
if (pid() == target()) {
if (entry) printf("\n")
printf("%s%s: %s (%s) = ", indent_str[indent], execname(), name, argstr)
@@ -21,7 +21,7 @@ probe syscall.* {
}
}
-probe syscall.*.return {
+probe syscall.*.return ? {
if (pid() == target()) {
if (indent) indent--
if (entry)