From f54f39c9a2a0353faa8d0a484d13dbcf93654fb7 Mon Sep 17 00:00:00 2001 From: compudj Date: Sat, 14 Aug 2004 21:36:37 +0000 Subject: [PATCH] remove after execmode hooks completely git-svn-id: http://ltt.polymtl.ca/svn@765 04897980-b3bd-0310-b5e0-8ef037075253 --- .../lttv/modules/gui/controlflow/drawing.c | 27 +++++++++++-------- 1 file changed, 16 insertions(+), 11 deletions(-) diff --git a/ltt/branches/poly/lttv/modules/gui/controlflow/drawing.c b/ltt/branches/poly/lttv/modules/gui/controlflow/drawing.c index 3fdfdcc1..7eecd71d 100644 --- a/ltt/branches/poly/lttv/modules/gui/controlflow/drawing.c +++ b/ltt/branches/poly/lttv/modules/gui/controlflow/drawing.c @@ -209,7 +209,7 @@ void drawing_data_request(Drawing_t *drawing, associated by id hooks. */ hooks = g_array_new(FALSE, FALSE, sizeof(LttvTraceHook)); - g_array_set_size(hooks, 15); + g_array_set_size(hooks, 10); /* before hooks */ @@ -249,33 +249,38 @@ void drawing_data_request(Drawing_t *drawing, /* after hooks */ +#if 0 + /**** DESACTIVATED ****/ lttv_trace_find_hook(ts->parent.t, "core","syscall_entry","syscall_id", NULL, NULL, after_execmode_hook, &g_array_index(hooks, LttvTraceHook, 8)); -#if 0 /**** DESACTIVATED ****/ lttv_trace_find_hook(ts->parent.t, "core", "syscall_exit", NULL, NULL, NULL, after_execmode_hook, &g_array_index(hooks, LttvTraceHook, 9)); -#endif //0 + /**** DESACTIVATED ****/ lttv_trace_find_hook(ts->parent.t, "core", "trap_entry", "trap_id", - NULL, NULL, after_execmode_hook, &g_array_index(hooks, LttvTraceHook, 9)); + NULL, NULL, after_execmode_hook, &g_array_index(hooks, LttvTraceHook, 10)); + /**** DESACTIVATED ****/ lttv_trace_find_hook(ts->parent.t, "core", "trap_exit", NULL, NULL, NULL, - after_execmode_hook, &g_array_index(hooks, LttvTraceHook, 10)); + after_execmode_hook, &g_array_index(hooks, LttvTraceHook, 11)); + /**** DESACTIVATED ****/ lttv_trace_find_hook(ts->parent.t, "core", "irq_entry", "irq_id", NULL, - NULL, after_execmode_hook, &g_array_index(hooks, LttvTraceHook, 11)); + NULL, after_execmode_hook, &g_array_index(hooks, LttvTraceHook, 12)); + /**** DESACTIVATED ****/ lttv_trace_find_hook(ts->parent.t, "core", "irq_exit", NULL, NULL, NULL, - after_execmode_hook, &g_array_index(hooks, LttvTraceHook, 12)); + after_execmode_hook, &g_array_index(hooks, LttvTraceHook, 13)); +#endif //0 lttv_trace_find_hook(ts->parent.t, "core", "schedchange", "in", "out", "out_state", after_schedchange_hook, - &g_array_index(hooks, LttvTraceHook, 13)); + &g_array_index(hooks, LttvTraceHook, 8)); lttv_trace_find_hook(ts->parent.t, "core", "process", "event_sub_id", "event_data1", "event_data2", after_process_hook, - &g_array_index(hooks, LttvTraceHook, 14)); + &g_array_index(hooks, LttvTraceHook, 9)); #if 0 lttv_trace_find_hook(ts->parent.t, "core", "process_fork", "child_pid", @@ -289,7 +294,7 @@ void drawing_data_request(Drawing_t *drawing, /* Add these hooks to each event_by_id hooks list */ /* add before */ - for(k = 0 ; k < hooks->len/2 ; k++) { + for(k = 0 ; k < 8 ; k++) { hook = g_array_index(hooks, LttvTraceHook, k); lttv_hooks_add(lttv_hooks_by_id_find(event_by_id, hook.id), hook.h, @@ -298,7 +303,7 @@ void drawing_data_request(Drawing_t *drawing, } /* add after */ - for(k = hooks->len/2 ; k < hooks->len ; k++) { + for(k = 8 ; k < 10 ; k++) { hook = g_array_index(hooks, LttvTraceHook, k); lttv_hooks_add(lttv_hooks_by_id_find(event_by_id, hook.id), hook.h, -- 2.34.1