From 935447c84ba1f04ca3468565a2d74b071a95d77b Mon Sep 17 00:00:00 2001 From: David Smith Date: Tue, 15 Apr 2008 15:58:23 -0500 Subject: 2008-04-15 David Smith * session.h (struct systemtap_session): Added utrace_derived_probe group and task_finder_derived_probe_group members. * elaborate.cxx (systemtap_session::systemtap_session): Added initialization of utrace_derived_probes and task_finder_derived_probes. * tapsets.cxx (struct task_finder_derived_probe_group): New derived_probe_group to handle task_finder framework. (struct utrace_derived_probe_group): New derived_probe_group to handle utrace probes. 2008-04-15 David Smith PR 5961 (partial) * task_finder.c (stap_start_task_finder): When an interesting thread is found that is already running, make sure to set up thread death notification. --- elaborate.cxx | 2 ++ 1 file changed, 2 insertions(+) (limited to 'elaborate.cxx') diff --git a/elaborate.cxx b/elaborate.cxx index 1c41df64..5a794128 100644 --- a/elaborate.cxx +++ b/elaborate.cxx @@ -1197,6 +1197,8 @@ systemtap_session::systemtap_session (): be_derived_probes(0), dwarf_derived_probes(0), uprobe_derived_probes(0), + utrace_derived_probes(0), + task_finder_derived_probes(0), timer_derived_probes(0), profile_derived_probes(0), mark_derived_probes(0), -- cgit