X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/5f1b7209de9aa1fa4d24ff0ff80c6937a7a28ce7..d9e664e60bd7fab62db0f1d838efd1d7bfd4d367:/src/msg/msg_host.c diff --git a/src/msg/msg_host.c b/src/msg/msg_host.c index 682b07ec07..c5440ab9cd 100644 --- a/src/msg/msg_host.c +++ b/src/msg/msg_host.c @@ -364,8 +364,8 @@ xbt_dynar_t MSG_host_get_storage_content(msg_host_t host) xbt_dynar_t storage_list = simcall_host_get_storage_list(host); xbt_dynar_foreach(storage_list, i, storage_name){ storage = xbt_lib_get_elm_or_null(storage_lib,storage_name); -// xbt_dict_t content = SIMIX_storage_get_content(storage); -// xbt_dynar_push(contents, &content); + xbt_dict_t content = simcall_storage_get_content(storage); + xbt_dynar_push(contents, &content); } return contents; }