Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
The new workstation model is really the default for MSG and GRAS
authoralegrand <alegrand@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Fri, 21 Apr 2006 07:39:25 +0000 (07:39 +0000)
committeralegrand <alegrand@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Fri, 21 Apr 2006 07:39:25 +0000 (07:39 +0000)
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@2163 48e7efb5-ca39-0410-a469-dd3cf9ba447f

src/msg/msg_config.c

index 30c330a..8cfed13 100644 (file)
@@ -43,7 +43,7 @@ void msg_config_init(void) {
                     "surf_workstation_model", xbt_cfgelm_string, 1,1,
                     &_msg_cfg_cb__surf_workstation_model,NULL);
                     
-  xbt_cfg_set_string(_msg_cfg_set,"surf_workstation_model", "CLM03");
+  xbt_cfg_set_string(_msg_cfg_set,"surf_workstation_model", "KCCFLN05");
 }
 
 void msg_config_finalize(void) {
@@ -59,13 +59,12 @@ void msg_config_finalize(void) {
  * 
  * Currently existing configuation variable:
  *   - surf_workstation_model (string): Model of workstation to use.  
- *     Possible values (defaults to "CLM03"):
+ *     Possible values (defaults to "KCCFLN05"):
  *     - "CLM03": realistic TCP behavior + basic CPU model (see [CML03 at CCGrid03])
- *     - "KCCFLN05": simple network model (no latency) but interference 
- *       between computations and communications (UNSTABLE, DONT USE)
+ *     - "KCCFLN05": realistic TCP behavior + basic CPU model (see [CML03 at CCGrid03]) + failure handling + interference between communications and computations if precised in the platform file.
  * 
  * Example:
- * MSG_config("surf_workstation_model","CLM03");
+ * MSG_config("surf_workstation_model","KCCFLN05");
  */
 void
 MSG_config(const char *name, ...) {