lttv_process_trace function takes another parameters: maxNumEvents
authoryangxx <yangxx@04897980-b3bd-0310-b5e0-8ef037075253>
Thu, 11 Sep 2003 15:52:58 +0000 (15:52 +0000)
committeryangxx <yangxx@04897980-b3bd-0310-b5e0-8ef037075253>
Thu, 11 Sep 2003 15:52:58 +0000 (15:52 +0000)
git-svn-id: http://ltt.polymtl.ca/svn@231 04897980-b3bd-0310-b5e0-8ef037075253

ltt/branches/poly/lttv/modules/gui/API/gtkTraceSet.c

index f53b068f0f8f241b7cf4fe971d6e358d7d67ef8f..aaaea0b766a71bdf1e4b9358eadafe48a1a30b8b 100644 (file)
@@ -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);
 }
 
 /**
This page took 0.023665 seconds and 4 git commands to generate.