Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
proper use of the HAVE_TRACING variable defined by Cmake through -Dtracing=on
[simgrid.git] / src / msg / msg_config.c
index 502a5c8..d82888d 100644 (file)
@@ -15,7 +15,7 @@
 /** \brief set a configuration variable
  *
  * Currently existing configuation variable:
- *   - workstation_model (string): Model of workstation to use.
+ *   - workstation/model (string): Model of workstation to use.
  *     Possible values (defaults to "KCCFLN05"):
  *     - "CLM03": realistic TCP behavior + basic CPU model (see [CML03 at CCGrid03]) + support for parallel tasks
  *     - "KCCFLN05": realistic TCP behavior + basic CPU model (see [CML03 at CCGrid03]) + failure handling + interference between communications and computations if precised in the platform file.
@@ -25,7 +25,7 @@
  *     - "KCCFLN05_Reno": realistic TCP behavior + basic CPU model (see [CML03 at CCGrid03]) + failure handling + interference between communications and computations if precised in the platform file. Uses the fairness adapted to the TCP Reno flow control.
  *
  * Example:
- * MSG_config("workstation_model","KCCFLN05");
+ * MSG_config("workstation/model","KCCFLN05");
  */
 void MSG_config(const char *name, ...)
 {
@@ -37,7 +37,7 @@ void MSG_config(const char *name, ...)
     abort();
   }
   va_start(pa, name);
-  xbt_cfg_set_vargs(_surf_cfg_set,name,pa);
+  xbt_cfg_set_vargs(_surf_cfg_set, name, pa);
   va_end(pa);
   return;
 }