X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/10ceac5fd14fb0426b5c93bda85676a79b02d0be..9bc2f7734295810a24f98d65169f06705e3ea951:/src/simix/smx_deployment.cpp diff --git a/src/simix/smx_deployment.cpp b/src/simix/smx_deployment.cpp index b34c5bb805..492e147ac4 100644 --- a/src/simix/smx_deployment.cpp +++ b/src/simix/smx_deployment.cpp @@ -7,12 +7,13 @@ #include #include +#include "simgrid/s4u/host.hpp" #include "smx_private.h" -#include -#include "xbt/sysdep.h" -#include "xbt/log.h" -#include "xbt/dict.h" #include "src/surf/xml/platf_private.hpp" // FIXME: KILLME. There must be a better way than mimicking XML here +#include "xbt/dict.h" +#include "xbt/log.h" +#include "xbt/sysdep.h" +#include XBT_LOG_NEW_DEFAULT_SUBCATEGORY(simix_deployment, simix, "Logging specific to SIMIX (deployment)"); @@ -129,7 +130,7 @@ void SIMIX_process_set_function(const char *process_host, sg_host_t host = sg_host_by_name(process_host); if (!host) THROWF(arg_error, 0, "Host '%s' unknown", process_host); - process.host = sg_host_get_name(host); + process.host = host->cname(); process.argc = 1 + xbt_dynar_length(arguments); process.argv = (const char**)xbt_new(char *, process.argc + 1);