X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/b6797e494ca445d5894ccb5098c2df4a25e2d3ea..c5151a86dde4a71352f55b9209bb3edc8b824aeb:/src/msg/environment.c diff --git a/src/msg/environment.c b/src/msg/environment.c index 9d6bbd8c37..c82b2d0f05 100644 --- a/src/msg/environment.c +++ b/src/msg/environment.c @@ -5,16 +5,18 @@ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ -#include"private.h" -#include"xbt/sysdep.h" -#include "xbt/error.h" -XBT_LOG_NEW_DEFAULT_SUBCATEGORY(environment, msg, +#include "private.h" +#include "xbt/sysdep.h" +#include "xbt/log.h" +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 **************************************/ @@ -66,8 +68,9 @@ void MSG_create_environment(const char *file) { surf_timer_resource_init(file); /* which model do you want today? */ - xbt_cfg_get_string (_msg_cfg_set, "surf_workstation_model", - &workstation_model_name); + workstation_model_name = xbt_cfg_get_string (_msg_cfg_set, "surf_workstation_model"); + + DEBUG1("Model : %s", workstation_model_name); if (!strcmp(workstation_model_name,"KCCFLN05")) { surf_workstation_resource_init_KCCFLN05(file); } else if (!strcmp(workstation_model_name,"CLM03")) {