From f227416e797ada4b806d13bb7183156cf8e7f6f2 Mon Sep 17 00:00:00 2001 From: yangxx Date: Thu, 11 Sep 2003 15:52:58 +0000 Subject: [PATCH] lttv_process_trace function takes another parameters: maxNumEvents git-svn-id: http://ltt.polymtl.ca/svn@231 04897980-b3bd-0310-b5e0-8ef037075253 --- ltt/branches/poly/lttv/modules/gui/API/gtkTraceSet.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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); } /** -- 2.34.1