X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/0d2cd6f4e4e5c8b75159c79b7ae7d716cef99086..9e6224ecd95ff7b6452fe9b2c088138877797542:/src/simix/smx_user.c diff --git a/src/simix/smx_user.c b/src/simix/smx_user.c index 77d8254d2d..81cef92c70 100644 --- a/src/simix/smx_user.c +++ b/src/simix/smx_user.c @@ -94,6 +94,17 @@ int simcall_host_get_core(smx_host_t host) return simcall_BODY_host_get_core(host); } +/** + * \ingroup simix_host_management + * \brief Returns the list of processes attached to the host. + * + * \param host A SIMIX host + * \return the swag of attached processes + */ +xbt_swag_t simcall_host_get_process_list(smx_host_t host) +{ + return simcall_BODY_host_get_process_list(host); +} /**