diff options
Diffstat (limited to 'examples/small_demos/sys.stp')
-rwxr-xr-x | examples/small_demos/sys.stp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/small_demos/sys.stp b/examples/small_demos/sys.stp index c25055de..2df20bc3 100755 --- a/examples/small_demos/sys.stp +++ b/examples/small_demos/sys.stp @@ -3,12 +3,12 @@ # print all system calls on the system probe syscall.* { - if (execname() != "stpd") + if (execname() != "staprun") printf("%s: %s (%s) = ", execname(), name, argstr) } probe syscall.*.return { - if (execname() != "stpd") + if (execname() != "staprun") printf("%s\n", retstr) } |