diff options
| author | David Smith <dsmith@redhat.com> | 2008-04-18 13:52:25 -0500 |
|---|---|---|
| committer | David Smith <dsmith@redhat.com> | 2008-04-18 13:52:25 -0500 |
| commit | 159cb10989a9d6c1d28fc5d1fa5506a75046a9f7 (patch) | |
| tree | 4c4c325a0153001b4862537f0d4fa2fcff5ea8bd /NEWS | |
| parent | 29cb9b42bd28a22ab926ed1a577267e4c54d935a (diff) | |
| download | systemtap-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 'NEWS')
| -rw-r--r-- | NEWS | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -13,6 +13,18 @@ vm.pagefault vm.write_shared +- More user-space probe types are added: + + probe process(PID).clone { } + probe process("PATH").clone { } + probe process(PID).exec { } + probe process("PATH").exec { } + probe process(PID).death { } + probe process("PATH").death { } + probe process(PID).syscall { } + probe process("PATH").syscall { } + probe process(PID).syscall.return { } + probe process("PATH").syscall.return { } * What's new in version 0.6 |
