X-Git-Url: http://git.lttng.org/?a=blobdiff_plain;f=ltt%2Fbranches%2Fpoly%2Flttv%2Fmodules%2Fgui%2Fcontrolflow%2Feventhooks.h;h=6f4fdf015e01a2a11e823e02721f4fedd457163b;hb=c5fdfca538e670a9cd04926a11187a42b0fa3ede;hp=73f9ab92dc7728a3cabd10bc9ded4278ddeafa9a;hpb=d47b33d2c29ed3d8ead828e309f7d9d39a516495;p=lttv.git diff --git a/ltt/branches/poly/lttv/modules/gui/controlflow/eventhooks.h b/ltt/branches/poly/lttv/modules/gui/controlflow/eventhooks.h index 73f9ab92..6f4fdf01 100644 --- a/ltt/branches/poly/lttv/modules/gui/controlflow/eventhooks.h +++ b/ltt/branches/poly/lttv/modules/gui/controlflow/eventhooks.h @@ -59,6 +59,8 @@ void send_test_data(ProcessList *process_list, Drawing_t *drawing); GtkWidget *h_guicontrolflow(Tab *tab); +GtkWidget *h_legend(Tab *tab); + int event_selected_hook(void *hook_data, void *call_data); /* @@ -81,9 +83,23 @@ int event_selected_hook(void *hook_data, void *call_data); * The choice of lines'color is defined by the context of the last event for this * process. */ -int draw_before_hook(void *hook_data, void *call_data); +int before_schedchange_hook(void *hook_data, void *call_data); +int after_schedchange_hook(void *hook_data, void *call_data); +int before_execmode_hook(void *hook_data, void *call_data); +int after_execmode_hook(void *hook_data, void *call_data); + + +int before_process_exit_hook(void *hook_data, void *call_data); +int before_process_release_hook(void *hook_data, void *call_data); +int after_process_exit_hook(void *hook_data, void *call_data); +int after_process_fork_hook(void *hook_data, void *call_data); +int after_fs_exec_hook(void *hook_data, void *call_data); -int draw_after_hook(void *hook_data, void *call_data); + +#if 0 +int before_process_hook(void *hook_data, void *call_data); +int after_process_hook(void *hook_data, void *call_data); +#endif //0 void draw_closure(gpointer key, gpointer value, gpointer user_data); @@ -100,4 +116,6 @@ gint traceset_notify(void *hook_data, void *call_data); gint redraw_notify(void *hook_data, void *call_data); gint continue_notify(void *hook_data, void *call_data); +void legend_destructor(GtkWindow *legend); + #endif // _EVENT_HOOKS_H