diff options
Diffstat (limited to 'testsuite/systemtap.syscall/sys.stp')
-rwxr-xr-x | testsuite/systemtap.syscall/sys.stp | 4 |
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) |