From: Pierre Veyre Date: Wed, 14 Aug 2013 07:30:58 +0000 (+0200) Subject: prepare MSG_storages_as_dynar function X-Git-Tag: v3_9_90~129 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/7dcc77d7a9bf7a4b8f667da338bbed3abd35be98 prepare MSG_storages_as_dynar function --- diff --git a/src/msg/msg_io.c b/src/msg/msg_io.c index 331c3e3633..7bdabdf0ee 100644 --- a/src/msg/msg_io.c +++ b/src/msg/msg_io.c @@ -193,4 +193,20 @@ msg_storage_t MSG_storage_get_by_name(const char *name) return (msg_storage_t) xbt_lib_get_elm_or_null(host_lib,name); } - +/** \ingroup msg_storage_management + * \brief Return a dynar containing all the storages declared at a given point of time + */ +xbt_dynar_t MSG_storages_as_dynar(void) { + xbt_lib_cursor_t cursor; + char *key; + void **data; + xbt_dynar_t res = xbt_dynar_new(sizeof(msg_storage_t),NULL); + + xbt_lib_foreach(host_lib, cursor, key, data) { + if(routing_get_network_element_type(key) == SURF_NETWORK_ELEMENT_HOST) { + xbt_dictelm_t elm = xbt_dict_cursor_get_elm(cursor); + xbt_dynar_push(res, &elm); + } + } + return res; +}