Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Initial structure. Nothing works yet.
[simgrid.git] / src / msg / environment.c
index c9c2b0f..07fccf2 100644 (file)
@@ -8,7 +8,7 @@
 #include "private.h"
 #include "xbt/sysdep.h"
 #include "xbt/log.h"
-XBT_LOG_NEW_DEFAULT_SUBCATEGORY(environment, msg,
+XBT_LOG_NEW_DEFAULT_SUBCATEGORY(msg_environment, msg,
                                "Logging specific to MSG (environment)");
 
 /** \defgroup msg_easier_life      Platform and Application management
@@ -73,6 +73,9 @@ void MSG_create_environment(const char *file) {
   DEBUG1("Model : %s", workstation_model_name);
   if (!strcmp(workstation_model_name,"KCCFLN05")) {
     surf_workstation_resource_init_KCCFLN05(file);
+  }
+  else if (!strcmp(workstation_model_name,"KCCFLN05_proportionnal")) {
+    surf_workstation_resource_init_KCCFLN05_proportionnal(file);
   } else if (!strcmp(workstation_model_name,"CLM03")) {
     surf_workstation_resource_init_CLM03(file);
   } else {