X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/f2fa1f3135d493a47daad311acb6c42d5ce2a1ce..ce9554b1de3402ba9c6b647f502e09d7ce4b6d2b:/src/simgrid/host.cpp diff --git a/src/simgrid/host.cpp b/src/simgrid/host.cpp index 36a9598e36..14ef0cd773 100644 --- a/src/simgrid/host.cpp +++ b/src/simgrid/host.cpp @@ -131,3 +131,13 @@ double sg_host_get_speed(sg_host_t host){ double sg_host_get_available_speed(sg_host_t host){ return surf_host_get_available_speed(host); } +/** @brief Returns the number of core of the processor. */ +int sg_host_get_core(sg_host_t host) { + return surf_host_get_core(host); +} +/** @brief Returns the state of a host. + * @return 1 if the host is active or 0 if it has crashed. + */ +int sg_host_get_state(sg_host_t host) { + return surf_host_get_state(surf_host_resource_priv(host)); +}