From: yangxx Date: Thu, 11 Sep 2003 15:52:58 +0000 (+0000) Subject: lttv_process_trace function takes another parameters: maxNumEvents X-Git-Tag: v0.12.20~3258 X-Git-Url: http://git.lttng.org./?a=commitdiff_plain;h=f227416e797ada4b806d13bb7183156cf8e7f6f2;p=lttv.git lttv_process_trace function takes another parameters: maxNumEvents git-svn-id: http://ltt.polymtl.ca/svn@231 04897980-b3bd-0310-b5e0-8ef037075253 --- diff --git a/ltt/branches/poly/lttv/modules/gui/API/gtkTraceSet.c b/ltt/branches/poly/lttv/modules/gui/API/gtkTraceSet.c index f53b068f..aaaea0b7 100644 --- a/ltt/branches/poly/lttv/modules/gui/API/gtkTraceSet.c +++ b/ltt/branches/poly/lttv/modules/gui/API/gtkTraceSet.c @@ -575,9 +575,11 @@ 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) { - lttv_process_trace(start, end, main_win->traceset, main_win->traceset_context); + lttv_process_trace(start, end, main_win->traceset, + main_win->traceset_context, maxNumEvents); } /**