X-Git-Url: http://git.liburcu.org/?a=blobdiff_plain;f=ltt%2Fbranches%2Fpoly%2Flttv%2Fmodules%2Fgui%2Fcontrolflow%2Feventhooks.h;h=d7244129bba0a0f8a74d95ef132f08f51f18c1ed;hb=d730b5c8b76588740d11bd12c6e85ed26bebdb4e;hp=fdb9edd040512375b36bf155869ea01e71fab975;hpb=637bd5449fa49c23a9f946e5e08f0964440c1609;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 fdb9edd0..d7244129 100644 --- a/ltt/branches/poly/lttv/modules/gui/controlflow/eventhooks.h +++ b/ltt/branches/poly/lttv/modules/gui/controlflow/eventhooks.h @@ -27,7 +27,7 @@ #define _EVENT_HOOKS_H #include -#include +#include #include #include "processlist.h" @@ -40,16 +40,16 @@ * library call, then used by the drawing hooks. Then, once all the events are * sent, it is freed by the hook called after the reading. */ -typedef struct _EventRequest -{ - ControlFlowData *control_flow_data; - LttTime time_begin, time_end; - gint x_begin, x_end; +//typedef struct _EventRequest +//{ +// ControlFlowData *control_flow_data; +// LttTime time_begin, time_end; +// gint x_begin, x_end; /* Fill the Events_Context during the initial expose, before calling for * events. */ //GArray Events_Context; //FIXME -} EventRequest ; +//} EventRequest ; @@ -57,20 +57,15 @@ typedef struct _EventRequest void send_test_data(ProcessList *process_list, Drawing_t *drawing); -GtkWidget *h_guicontrolflow(MainWindow *mw, LttvTracesetSelector * s, char * key); +GtkWidget *h_guicontrolflow(Tab *tab); int event_selected_hook(void *hook_data, void *call_data); -/* Hook called before drawing. Gets the initial context at the beginning of the - * drawing interval and copy it to the context in event_request. - */ -int draw_before_hook(void *hook_data, void *call_data); - /* * The draw event hook is called by the reading API to have a * particular event drawn on the screen. * @param hook_data ControlFlowData structure of the viewer. - * @param call_data Event context. + * @param call_data Event context with state. * * This function basically draw lines and icons. Two types of lines are drawn : * one small (3 pixels?) representing the state of the process and the second @@ -86,19 +81,37 @@ int draw_before_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_event_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 draw_after_hook(void *hook_data, void *call_data); -void draw_closure(gpointer key, gpointer value, gpointer user_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 after_data_request(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 -gint update_time_window_hook(void *hook_data, void *call_data); -gint update_current_time_hook(void *hook_data, void *call_data); +void draw_closure(gpointer key, gpointer value, gpointer user_data); + +int before_chunk(void *hook_data, void *call_data); +int after_chunk(void *hook_data, void *call_data); +int before_request(void *hook_data, void *call_data); +int after_request(void *hook_data, void *call_data); +gint update_time_window_hook(void *hook_data, void *call_data); +gint update_current_time_hook(void *hook_data, void *call_data); +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); #endif // _EVENT_HOOKS_H