X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/666767f623cc55cc4524e84c4fe0f64b3dbd8bf9..2211665cb451243f182fa49a18219331d9bf58d6:/src/msg/msg_host.c diff --git a/src/msg/msg_host.c b/src/msg/msg_host.c index 136a2ec47f..0cbac256a7 100644 --- a/src/msg/msg_host.c +++ b/src/msg/msg_host.c @@ -4,8 +4,8 @@ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ -#include "msg/msg_private.h" -#include "msg/msg_mailbox.h" +#include "src/msg/msg_private.h" +#include "src/msg/msg_mailbox.h" #include "xbt/sysdep.h" #include "xbt/log.h" #include "simgrid/simix.h" @@ -236,7 +236,7 @@ double MSG_get_host_speed(msg_host_t h) { xbt_assert((h != NULL), "Invalid parameters"); - return (simcall_host_get_speed(h)); + return sg_host_get_speed(h); } @@ -250,7 +250,7 @@ int MSG_host_get_core_number(msg_host_t host) { xbt_assert((host != NULL), "Invalid parameters"); - return (simcall_host_get_core(host)); + return sg_host_get_core(host); } /** \ingroup m_host_management @@ -318,7 +318,7 @@ void MSG_host_set_property_value(msg_host_t host, const char *name, char *value, int MSG_host_is_on(msg_host_t host) { xbt_assert((host != NULL), "Invalid parameters (host is NULL)"); - return (simcall_host_get_state(host)); + return sg_host_get_state(host); } /** @ingroup m_host_management * @@ -329,7 +329,7 @@ int MSG_host_is_on(msg_host_t host) int MSG_host_is_off(msg_host_t host) { xbt_assert((host != NULL), "Invalid parameters (host is NULL)"); - return !(simcall_host_get_state(host)); + return !(sg_host_get_state(host)); } /** \ingroup m_host_management @@ -405,7 +405,7 @@ void MSG_host_set_pstate(msg_host_t host, int pstate_index) { * \param host host to test */ int MSG_host_get_pstate(msg_host_t host) { - return simcall_host_get_pstate(host); + return sg_host_get_pstate(host); } /** \ingroup m_host_management @@ -416,7 +416,7 @@ int MSG_host_get_pstate(msg_host_t host) { */ double MSG_host_get_consumed_energy(msg_host_t host) { xbt_assert((host != NULL), "Invalid parameters (host is NULL)"); - return simcall_host_get_consumed_energy(host); + return sg_host_get_consumed_energy(host); } /** \ingroup m_host_management * \brief Returns the amount of watt dissipated at the given pstate when the host is idling