X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/1fc5e0b36dddadb1e7deec1428f526de70bdb016..e50d4a9de8334346d43f962316c081e0069e56b3:/src/simix/smx_io.c diff --git a/src/simix/smx_io.c b/src/simix/smx_io.c index 7e86d4b965..6833b8ad09 100644 --- a/src/simix/smx_io.c +++ b/src/simix/smx_io.c @@ -395,6 +395,15 @@ sg_size_t SIMIX_storage_get_size(smx_storage_t storage){ return surf_storage_get_size(storage); } +const char* SIMIX_pre_storage_get_host(smx_simcall_t simcall, smx_storage_t storage){ + return SIMIX_storage_get_host(storage); +} + +const char* SIMIX_storage_get_host(smx_storage_t storage){ + xbt_assert((storage != NULL), "Invalid parameters"); + return surf_storage_get_host(storage); +} + void SIMIX_post_io(smx_action_t action) { xbt_fifo_item_t i;