From: yangxx Date: Thu, 11 Sep 2003 15:50:51 +0000 (+0000) Subject: lttv_process_trace function takes another parameters: maxNumEvents X-Git-Tag: v0.12.20~3259 X-Git-Url: http://git.lttng.org./?a=commitdiff_plain;h=f4f8f203b436430ee95b85b0cf1c391a68dee73e;p=lttv.git lttv_process_trace function takes another parameters: maxNumEvents git-svn-id: http://ltt.polymtl.ca/svn@230 04897980-b3bd-0310-b5e0-8ef037075253 --- diff --git a/ltt/branches/poly/include/lttv/gtkTraceSet.h b/ltt/branches/poly/include/lttv/gtkTraceSet.h index 962a25d3..f1680abb 100644 --- a/ltt/branches/poly/include/lttv/gtkTraceSet.h +++ b/ltt/branches/poly/include/lttv/gtkTraceSet.h @@ -322,7 +322,8 @@ void SetHPaneDividor(mainWindow *main_win, gint position); * @param end the end time of the last event to be processed. */ -void processTraceset(mainWindow *main_win, LttTime start, LttTime end); +void processTraceset(mainWindow *main_win, LttTime start, + LttTime end, unsigned maxNumEvents); /** diff --git a/ltt/branches/poly/include/lttv/processTrace.h b/ltt/branches/poly/include/lttv/processTrace.h index 133f7ecd..f59f95e9 100644 --- a/ltt/branches/poly/include/lttv/processTrace.h +++ b/ltt/branches/poly/include/lttv/processTrace.h @@ -160,7 +160,7 @@ struct _LttvTracefileContextClass { GType lttv_tracefile_context_get_type (void); void lttv_process_trace(LttTime start, LttTime end, LttvTraceset *traceset, - LttvTracesetContext *context); + LttvTracesetContext *context, unsigned maxNumEvents); void lttv_traceset_context_add_hooks(LttvTracesetContext *self, LttvHooks *before_traceset,