summaryrefslogtreecommitdiffstats
path: root/examples/small_demos/sys.stp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/small_demos/sys.stp')
-rwxr-xr-xexamples/small_demos/sys.stp4
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)
}