From a63a95dc1994d08176b63f0a133749b531f22b80 Mon Sep 17 00:00:00 2001 From: dsmith Date: Tue, 26 Sep 2006 21:41:37 +0000 Subject: 2006-09-26 David Smith * .cvsignore: Changed 'stpd' reference to 'staprun'. * INTERNALS: Ditto. * buildrun.cxx (run_pass): Ditto. * lket.5.in: Ditto. * stap.1.in: Ditto. * stapruncs.5.in: Ditto. * examples/small_demos/demo_script.txt: Ditto. * examples/small_demos/sys.stp: Ditto. * systemtap.spec.in: Created a new subpackage, "systemtap-runtime", that contains staprun. * Makefile.am: Renamed 'stpd' to 'staprun' and moved it to $(bindir). * Makefile.in: Regenerated from Makefile.am. * configure.ac: Incremented version number. * configure: Regenerated from configure.ac. --- examples/small_demos/sys.stp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'examples/small_demos/sys.stp') 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) } -- cgit