X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/e6692e68ddfe1ef3234cacab53edb44277ae4405..2fad952ef4a63aedf6c8b2dc4e371de849f1e163:/src/msg/environment.c diff --git a/src/msg/environment.c b/src/msg/environment.c index e3eb278a2d..312ce57586 100644 --- a/src/msg/environment.c +++ b/src/msg/environment.c @@ -11,6 +11,12 @@ XBT_LOG_NEW_DEFAULT_SUBCATEGORY(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. + */ + /********************************* MSG **************************************/ /** \ingroup msg_easier_life @@ -55,8 +61,11 @@ void MSG_create_environment(const char *file) { char *name = NULL; void *workstation = NULL; +#ifdef ALVIN_SURF_SPECIAL + surf_workstation_resource_init_KCCFLN05(file); +#else surf_workstation_resource_init_CLM03(file); -/* surf_workstation_resource_init_KCCFLN05(file); */ +#endif xbt_dict_foreach(workstation_set, cursor, name, workstation) { __MSG_host_create(name, workstation, NULL);