Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
cosmetics
[simgrid.git] / src / msg / msg_config.c
index 46fe08d..13c9d0d 100644 (file)
@@ -15,7 +15,7 @@
 /** \brief set a configuration variable
  * 
  * Currently existing configuation variable:
- *   - surf_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("surf_workstation_model","KCCFLN05");
+ * MSG_config("workstation_model","KCCFLN05");
  */
 void MSG_config(const char *name, ...) {
   
@@ -42,5 +42,5 @@ void MSG_config(const char *name, ...) {
   SIMIX_config(name,pa);
   
   va_end(pa);
-       return;
+  return;
 }