X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/0f71b9d5ea36aaf6979d87d2f001cd7a8110c8c0..ebf8c46c16a40fde708f840334c9e28e10060d4e:/src/simix/smx_host.c diff --git a/src/simix/smx_host.c b/src/simix/smx_host.c index 72da17a23c..70b8fd58aa 100644 --- a/src/simix/smx_host.c +++ b/src/simix/smx_host.c @@ -158,6 +158,16 @@ int SIMIX_host_get_core(smx_host_t host){ get_core(host); } +xbt_swag_t SIMIX_pre_host_get_process_list(smx_simcall_t simcall, smx_host_t host){ + return SIMIX_host_get_process_list(host); +} + +xbt_swag_t SIMIX_host_get_process_list(smx_host_t host){ + xbt_assert((host != NULL), "Invalid parameters (simix host is NULL)"); + smx_host_priv_t host_priv = SIMIX_host_priv(host); + + return host_priv->process_list; +} double SIMIX_pre_host_get_available_speed(smx_simcall_t simcall, smx_host_t host){