diff options
author | Josh Stone <jistone@redhat.com> | 2009-04-14 12:34:12 -0700 |
---|---|---|
committer | Josh Stone <jistone@redhat.com> | 2009-04-14 12:34:12 -0700 |
commit | 1f65cc4ffd1bd362b10d7f07d1cb9c4e7de68027 (patch) | |
tree | 1948954f707ddcb3f879b5e7646533d8fea83199 /testsuite/systemtap.examples/process/proc_snoop.stp | |
parent | 891e4fb2d5bf81b540b66b126b2ba78d1b7f459b (diff) | |
download | systemtap-steved-1f65cc4ffd1bd362b10d7f07d1cb9c4e7de68027.tar.gz systemtap-steved-1f65cc4ffd1bd362b10d7f07d1cb9c4e7de68027.tar.xz systemtap-steved-1f65cc4ffd1bd362b10d7f07d1cb9c4e7de68027.zip |
PR9953: split up the two process.* tapsets
The overlapping process.* tapsets are now separated. Those probe points
documented in stapprobes(3stap) remain the same. Those that were formerly
in stapprobes.process(3stap) have been renamed to kprocess, to reflect
their kernel perspective on processes.
Diffstat (limited to 'testsuite/systemtap.examples/process/proc_snoop.stp')
-rwxr-xr-x | testsuite/systemtap.examples/process/proc_snoop.stp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/testsuite/systemtap.examples/process/proc_snoop.stp b/testsuite/systemtap.examples/process/proc_snoop.stp index 06425d45..9a3768c2 100755 --- a/testsuite/systemtap.examples/process/proc_snoop.stp +++ b/testsuite/systemtap.examples/process/proc_snoop.stp @@ -18,30 +18,30 @@ function id:string(task:long) { task_execname(task)) } -probe process.create { +probe kprocess.create { report(sprintf("create %s", id(task))) } -probe process.start { +probe kprocess.start { report("start") } -probe process.exec { +probe kprocess.exec { report(sprintf("exec %s", filename)) } -probe process.exec_complete { +probe kprocess.exec_complete { if (success) report("exec success") else report(sprintf("exec failed %d (%s)", errno, errno_str(errno))) } -probe process.exit { +probe kprocess.exit { report(sprintf("exit %d", code)) } -probe process.release { +probe kprocess.release { report(sprintf("remove %s", id(task))) } |