X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/25d6952dcf52e6ffc1e4a402af0e2d3c17ac3935..4e7eb5ee8613f100bfefeb6475d93ce9c58c75ea:/src/msg/environment.c diff --git a/src/msg/environment.c b/src/msg/environment.c index 4ed51ca99a..3513cd907c 100644 --- a/src/msg/environment.c +++ b/src/msg/environment.c @@ -8,13 +8,15 @@ #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 * \brief This section describes functions to manage the platform creation * and the application deployment. You should also have a look at * \ref MSG_examples to have an overview of their usage. + * \htmlonly \endhtmlonly + * */ /********************************* MSG **************************************/ @@ -71,6 +73,8 @@ 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_proportional")) { + surf_workstation_resource_init_KCCFLN05_proportionnal(file); } else if (!strcmp(workstation_model_name,"CLM03")) { surf_workstation_resource_init_CLM03(file); } else {