X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/20bd6775d978362f99c47ba22aef63540f771b98..50c07172efbd6c3b73c787c2c200048d3205b640:/src/simix/smx_host.c diff --git a/src/simix/smx_host.c b/src/simix/smx_host.c index 1882fcba97..9c53fac0d6 100644 --- a/src/simix/smx_host.c +++ b/src/simix/smx_host.c @@ -623,3 +623,11 @@ void SIMIX_set_category(smx_action_t action, const char *category) } #endif +xbt_dynar_t SIMIX_pre_host_get_storage_list(smx_simcall_t simcall, smx_host_t host){ + return SIMIX_host_get_storage_list(host); +} +xbt_dynar_t SIMIX_host_get_storage_list(smx_host_t host){ + xbt_assert((host != NULL), "Invalid parameters (simix host is NULL)"); + + return surf_workstation_model->extension.workstation.get_storage_list(host); +}