Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
doxygen fixups
authorMartin Quinson <martin.quinson@loria.fr>
Mon, 16 May 2016 06:04:03 +0000 (08:04 +0200)
committerMartin Quinson <martin.quinson@loria.fr>
Mon, 16 May 2016 06:04:03 +0000 (08:04 +0200)
examples/msg/README.doc
src/simdag/sd_task.cpp
src/surf/maxmin.cpp

index 639f786..d363311 100644 (file)
@@ -288,9 +288,9 @@ top of the example file).
 @example examples/msg/trace-categories/trace-categories.c
 @example examples/msg/trace-masterworker/trace-masterworker.c
 @example examples/msg/trace-process-migration/trace-process-migration.c
-@example examples/msg/trace-user-variables/trace-user-variables.c
+@example examples/msg/trace-host-user-variables/trace-host-user-variables.c
 @example examples/msg/trace-link-user-variables/trace-link-user-variables.c
-@example examples/msg/trace-link-srcdst-user-variables/trace-link-srcdst-user-variables.c
+@example examples/msg/trace-route-user-variables/trace-route-user-variables.c
 
 @example examples/msg/network-ns3/network-ns3.c
 
@@ -302,10 +302,10 @@ top of the example file).
 @example examples/msg/actions-storage/actions-storage.c
 
 @example examples/msg/app-pmm/app-pmm.c
-@example examples/msg/dht-chord
+@example examples/msg/dht-chord/dht-chord.c
 
 @example examples/msg/task-priority/task-priority.c
-@example examples/msg/properties/properties.c
+@example examples/msg/platform-properties/platform-properties.c
                         
 */
 
index 65e3fae..48d0ed7 100644 (file)
@@ -656,13 +656,13 @@ void SD_task_dependency_add(const char *name, void *data, SD_task_t src, SD_task
 }
 
 /**
- * \brief Returns the name given as input when dependency has been created..
+ * \brief Returns the name given as input when dependency has been created.
  *
  * \param src a task
  * \param dst a task depending on \a src
- *
  */
-const char *SD_task_dependency_get_name(SD_task_t src, SD_task_t dst){
+const char *SD_task_dependency_get_name(SD_task_t src, SD_task_t dst)
+{
   unsigned int i;
   SD_dependency_t dependency;
 
index 0598653..0ea8e65 100644 (file)
@@ -955,7 +955,7 @@ void lmm_solve(lmm_system_t sys)
  * 
  *  Makes var->bound equal to bound. Whenever this function is called a change is  signed in the system. To
  *  avoid false system changing detection it is a good idea to test (bound != 0) before calling it.
-*/
+ */
 void lmm_update_variable_bound(lmm_system_t sys, lmm_variable_t var, double bound)
 {
   sys->modified = 1;
@@ -973,10 +973,7 @@ int lmm_concurrency_slack(lmm_constraint_t cnstr){
   return  cnstr->concurrency_limit - cnstr->concurrency_current;  
 }
 
-/** \brief Measure the minimum concurrency slack across all constraints where var is involved
- *
- * \param The variable to check for
- */
+/** \brief Measure the minimum concurrency slack across all constraints where the given var is involved */
 int lmm_cnstrs_min_concurrency_slack(lmm_variable_t var){
   int i;
   //FIXME MARTIN: Replace by infinite value std::numeric_limits<int>::(max)(), or something better within Simgrid?