summaryrefslogtreecommitdiffstats
path: root/runtime/ChangeLog
diff options
context:
space:
mode:
authorDavid Smith <dsmith@redhat.com>2008-05-28 11:56:06 -0500
committerDavid Smith <dsmith@redhat.com>2008-05-28 12:12:15 -0500
commit37e24fbe9a36eee5cc16f689b55c2e90159d5f2f (patch)
tree34b5a13d805a3a3d4e629a6891c49f1340d5a77b /runtime/ChangeLog
parentcfac4b1fc487712e0ce5b11630b74bdaea5f8966 (diff)
downloadsystemtap-steved-37e24fbe9a36eee5cc16f689b55c2e90159d5f2f.tar.gz
systemtap-steved-37e24fbe9a36eee5cc16f689b55c2e90159d5f2f.tar.xz
systemtap-steved-37e24fbe9a36eee5cc16f689b55c2e90159d5f2f.zip
Handle bug #6500 fallout.
2008-05-28 David Smith <dsmith@redhat.com> * tapsets.cxx (utrace_derived_probe_group::emit_probe_decl): Instead of adding clone handlers, just call the probes directly. (utrace_derived_probe_group::emit_module_decls): For syscall probes, on exec detach the parent's utrace engine from the child. 2008-05-28 David Smith <dsmith@redhat.com> * task_finder.c (__stp_utrace_attach_match_filename): Added register_p parameter, which is passed on to the callback. Only adds death notification if register_p is 1. If register_p is 0, removes death notification. (__stp_utrace_attach_match_tsk): Moved code from __stp_utrace_task_finder_report_clone that handles the details of grabbing a task's path. (__stp_utrace_task_finder_report_clone): Calls new __stp_utrace_attach_match_tsk(). (__stp_utrace_task_finder_report_exec): Notifies upper layer that it might need to detach from newly exec'ed process.`
Diffstat (limited to 'runtime/ChangeLog')
-rw-r--r--runtime/ChangeLog14
1 files changed, 14 insertions, 0 deletions
diff --git a/runtime/ChangeLog b/runtime/ChangeLog
index 0b7559b9..cc8bf1b0 100644
--- a/runtime/ChangeLog
+++ b/runtime/ChangeLog
@@ -1,3 +1,17 @@
+2008-05-28 David Smith <dsmith@redhat.com>
+
+ * task_finder.c (__stp_utrace_attach_match_filename): Added
+ register_p parameter, which is passed on to the callback. Only
+ adds death notification if register_p is 1. If register_p is 0,
+ removes death notification.
+ (__stp_utrace_attach_match_tsk): Moved code from
+ __stp_utrace_task_finder_report_clone that handles the details of
+ grabbing a task's path.
+ (__stp_utrace_task_finder_report_clone): Calls new
+ __stp_utrace_attach_match_tsk().
+ (__stp_utrace_task_finder_report_exec): Notifies upper layer that
+ it might need to detach from newly exec'ed process.`
+
2008-05-27 Josh Stone <joshua.i.stone@intel.com>
PR 6432