add documentation and fix typos
authorpmf <pmf@04897980-b3bd-0310-b5e0-8ef037075253>
Fri, 30 May 2008 15:15:32 +0000 (15:15 +0000)
committerpmf <pmf@04897980-b3bd-0310-b5e0-8ef037075253>
Fri, 30 May 2008 15:15:32 +0000 (15:15 +0000)
git-svn-id: http://ltt.polymtl.ca/svn@2936 04897980-b3bd-0310-b5e0-8ef037075253

ltt/branches/poly/lttv/modules/gui/lttvwindow/lttvwindow/callbacks.c
ltt/branches/poly/lttv/modules/gui/lttvwindow/lttvwindow/lttvwindowtraces.c
ltt/branches/poly/lttv/modules/gui/resourceview/eventhooks.c

index 09e6656369f4fc39de03b4e570931dcb4b2a4379..817044b89539fa1d7c069c31ca157960c18a7221 100644 (file)
@@ -892,6 +892,10 @@ void open_traceset(GtkWidget * widget, gpointer user_data)
 }
 
 /* lttvwindow_process_pending_requests
+ *
+ * Process requests for parts of the trace from viewers.
+ *
+ * These requests are made by lttvwindow_events_request().
  * 
  * This internal function gets called by g_idle, taking care of the pending
  * requests. It is responsible for concatenation of time intervals and position
index c5bd1935e48382ef43e126e71d1a20690f20f776..caa84cee813fe146f03e45f6433118f794f46ddf 100644 (file)
@@ -1003,6 +1003,8 @@ static gint find_window_widget(MainWindow *a, GtkWidget *b)
 
 
 /* lttvwindowtraces_process_pending_requests
+ *
+ * Process the pending background computation requests
  * 
  * This internal function gets called by g_idle, taking care of the pending
  * requests.
@@ -1615,7 +1617,7 @@ void lttvwindowtraces_register_computation_hooks(LttvAttributeName module_name,
 
 
 /**
- * It removes all the requests than can be currently processed by the
+ * It removes all the requests that can be currently processed by the
  * background computation algorithm for all the traces (list_in and list_out).
  *
  * Leaves the flag to in_progress or none.. depending if current or queue
@@ -1709,7 +1711,7 @@ void lttvwindowtraces_unregister_requests(LttvAttributeName module_name)
 /**
  * Unregister the background computation hooks for a specific module.
  *
- * It also removes all the requests than can be currently processed by the
+ * It also removes all the requests that can be currently processed by the
  * background computation algorithm for all the traces (list_in and list_out).
  *
  * @param module_name A GQuark : the name of the module which computes the
index d94d18eb11d4cf0c23b3ee912a1873c1a8a2d6d6..6c74bdbbb3c82e84b3b61a1c2256635153cfd4b5 100644 (file)
@@ -2021,6 +2021,11 @@ int before_chunk(void *hook_data, void *call_data)
   return 0;
 }
 
+/* before_request
+ *
+ * This gets executed just before an events request is executed
+ */
+
 int before_request(void *hook_data, void *call_data)
 {
   EventsRequest *events_request = (EventsRequest*)hook_data;
This page took 0.0282829999999999 seconds and 4 git commands to generate.