summaryrefslogtreecommitdiffstats
path: root/stapprobes.5.in
diff options
context:
space:
mode:
authorDavid Smith <dsmith@redhat.com>2008-04-18 13:52:25 -0500
committerDavid Smith <dsmith@redhat.com>2008-04-18 13:52:25 -0500
commit159cb10989a9d6c1d28fc5d1fa5506a75046a9f7 (patch)
tree4c4c325a0153001b4862537f0d4fa2fcff5ea8bd /stapprobes.5.in
parent29cb9b42bd28a22ab926ed1a577267e4c54d935a (diff)
downloadsystemtap-steved-159cb10989a9d6c1d28fc5d1fa5506a75046a9f7.tar.gz
systemtap-steved-159cb10989a9d6c1d28fc5d1fa5506a75046a9f7.tar.xz
systemtap-steved-159cb10989a9d6c1d28fc5d1fa5506a75046a9f7.zip
Added utrace exec probes.
2008-04-18 David Smith <dsmith@redhat.com> * tapsets.cxx (struct utrace_builder): Added exec probes. (utrace_derived_probe_group::emit_probe_decl): Ditto. (utrace_derived_probe_group::emit_module_decls): Ditto. (register_standard_tapsets): Ditto. * stapprobes.5.in: Added information about exec probes. * NEWS: Added information about utrace probes. 2008-04-18 David Smith <dsmith@redhat.com> * systemtap.base/utrace_p4.exp: Added exec probe test.
Diffstat (limited to 'stapprobes.5.in')
-rw-r--r--stapprobes.5.in6
1 files changed, 6 insertions, 0 deletions
diff --git a/stapprobes.5.in b/stapprobes.5.in
index fdba10be..3633fd39 100644
--- a/stapprobes.5.in
+++ b/stapprobes.5.in
@@ -311,6 +311,8 @@ Additional user-space probing is available in the following forms:
.SAMPLE
process(PID).clone
process("PATH").clone
+process(PID).exec
+process("PATH").exec
process(PID).death
process("PATH").death
process(PID).syscall
@@ -324,6 +326,10 @@ A
probe gets called when a thread described by PID or PATH creates a new
thread.
A
+.B .exec
+probe gets called when a thread described by PID or PATH returns from
+.IR exec() .
+A
.B .death
probe gets called when a thread described by PID or PATH dies.
A