X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/8be7ea3f9e71cd563e91b6aba63f5c70f043fbd5..87116782db3154fb79cd353db446bd226cf15976:/src/msg/msg_environment.c diff --git a/src/msg/msg_environment.c b/src/msg/msg_environment.c index 279f4adaed..fcff8013a0 100644 --- a/src/msg/msg_environment.c +++ b/src/msg/msg_environment.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2004-2013. The SimGrid Team. +/* Copyright (c) 2004-2015. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -44,8 +44,7 @@ void MSG_post_create_environment(void) { /* Initialize MSG hosts */ xbt_lib_foreach(host_lib, cursor, name, data) { - if(data[SIMIX_HOST_LEVEL]) - __MSG_host_create(xbt_dict_cursor_get_elm(cursor)); + __MSG_host_create(xbt_dict_cursor_get_elm(cursor)); } /* Initialize MSG storages */ @@ -64,6 +63,10 @@ const char *MSG_environment_as_get_name(msg_as_t as) { return surf_AS_get_name(as); } +msg_as_t MSG_environment_as_get_by_name(const char * name) { + return surf_AS_get_by_name(name); +} + xbt_dict_t MSG_environment_as_get_routing_sons(msg_as_t as) { xbt_dict_t res = surf_AS_get_routing_sons(as); return res;