X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/6ee7e9c2e455536ab817ae0136acfbb53822eecd..08ce0edd12b2c42378cc228a91d37613bbc2acbc:/src/simix/smx_environment.c diff --git a/src/simix/smx_environment.c b/src/simix/smx_environment.c index ba8f2e2845..0c7d109899 100644 --- a/src/simix/smx_environment.c +++ b/src/simix/smx_environment.c @@ -33,14 +33,12 @@ XBT_LOG_NEW_DEFAULT_SUBCATEGORY(simix_environment, simix, */ void SIMIX_create_environment(const char *file) { - xbt_dict_cursor_t cursor = NULL; + xbt_lib_cursor_t cursor = NULL; char *name = NULL; - void *workstation = NULL; + void **workstation = NULL; double start, end; - platform_filename = bprintf("%s",file); - // Reset callbacks surf_parse_reset_callbacks(); // Add config callbacks @@ -54,9 +52,9 @@ void SIMIX_create_environment(const char *file) end = xbt_os_time(); XBT_DEBUG("PARSE TIME: %lg", (end - start)); - xbt_dict_foreach(surf_model_resource_set(surf_workstation_model), cursor, - name, workstation) { - SIMIX_host_create(name, workstation, NULL); + xbt_lib_foreach(host_lib, cursor, name, workstation) { + if(workstation[SURF_WKS_LEVEL]) + SIMIX_host_create(name, workstation[SURF_WKS_LEVEL], NULL); } surf_presolve(); }