From: compudj Date: Mon, 24 May 2004 20:52:20 +0000 (+0000) Subject: minor errors fixed X-Git-Tag: v0.12.20~2952 X-Git-Url: http://git.liburcu.org/?a=commitdiff_plain;h=fc9fa653684884d2eb5b658b074894f8730cf94c;p=lttv.git minor errors fixed git-svn-id: http://ltt.polymtl.ca/svn@537 04897980-b3bd-0310-b5e0-8ef037075253 --- diff --git a/ltt/branches/poly/doc/developer/lttvwindow_events_delivery.txt b/ltt/branches/poly/doc/developer/lttvwindow_events_delivery.txt index 8f936a5e..c71e7a20 100644 --- a/ltt/branches/poly/doc/developer/lttvwindow_events_delivery.txt +++ b/ltt/branches/poly/doc/developer/lttvwindow_events_delivery.txt @@ -141,19 +141,19 @@ Added to the lttvwindow API : - lttvwindow_events_request -( MainWindow *main_win, - LttTime start_time, - LttvTracesetPosition start_position, - LttTime end_time, - guint num_events, - LttvTracesetPosition end_position, - LttvHooksById before_traceset, - LttvHooksById before_trace, - LttvHooksById before_tracefile, - LttvHooksById middle, - LttvHooksById after_tracefile, - LttvHooksById after_trace, - LttvHooksById after_traceset) +( MainWindow *main_win, + LttTime start_time, + LttvTracesetContextPosition start_position, + LttTime end_time, + guint num_events, + LttvTracesetContextPosition end_position, + LttvHooksById before_traceset, + LttvHooksById before_trace, + LttvHooksById before_tracefile, + LttvHooksById middle, + LttvHooksById after_tracefile, + LttvHooksById after_trace, + LttvHooksById after_traceset) Internal functions : @@ -181,18 +181,18 @@ It adds the EventsRequest struct to the array of time requests pending and registers a pending request for the next g_idle if none is registered. typedef struct _EventsRequest { - LttTime start_time, - LttvTracesetPosition start_position, - LttTime end_time, - guint num_events, - LttvTracesetPosition end_position, - LttvHooksById before_traceset, - LttvHooksById before_trace, - LttvHooksById before_tracefile, - LttvHooksById middle, - LttvHooksById after_tracefile, - LttvHooksById after_trace, - LttvHooksById after_traceset) + LttTime start_time, /* Unset : { 0, 0 } */ + LttvTracesetContextPosition start_position, /* Unset : num_traces = 0 */ + LttTime end_time, /* Unset : { 0, 0 } */ + guint num_events, /* Unset : G_MAXUINT */ + LttvTracesetContextPosition end_position, /* Unset : num_traces = 0 */ + LttvHooksById *before_traceset, /* Unset : NULL */ + LttvHooksById *before_trace, /* Unset : NULL */ + LttvHooksById *before_tracefile, /* Unset : NULL */ + LttvHooksById *middle, /* Unset : NULL */ + LttvHooksById *after_tracefile, /* Unset : NULL */ + LttvHooksById *after_trace, /* Unset : NULL */ + LttvHooksById *after_traceset /* Unset : NULL */ } EventsRequest;