X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/2995193b7e30d03c04917852c4c0b26d26646273..f4a258218681d1002c99d4556ba4b21bc6a6adff:/src/msg/host.c?ds=sidebyside diff --git a/src/msg/host.c b/src/msg/host.c index a6cc623bf5..8d1b47d9f2 100644 --- a/src/msg/host.c +++ b/src/msg/host.c @@ -5,14 +5,14 @@ /* 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"private.h" -#include"xbt/sysdep.h" -#include "xbt/error.h" -XBT_LOG_NEW_DEFAULT_SUBCATEGORY(host, msg, - "Logging specific to MSG (host)"); +#include "private.h" +#include "xbt/sysdep.h" +#include "xbt/log.h" /** \defgroup m_host_management Management functions of Hosts * \brief This section describes the host structure of MSG + * + * \htmlonly \endhtmlonly * (#m_host_t) and the functions for managing it. * * A location (or host) is any possible place where @@ -47,7 +47,7 @@ m_host_t __MSG_host_create(const char *name, simdata->process_list = xbt_fifo_new(); /* Update global variables */ - xbt_fifo_push(msg_global->host, host); + xbt_fifo_unshift(msg_global->host, host); PAJE_HOST_NEW(host); @@ -175,3 +175,34 @@ int MSG_get_host_msgload(m_host_t h) return(0); /* return(surf_workstation_resource->extension_public->get_load(h->simdata->host)); */ } + +/** \ingroup m_host_management + * \brief Return the speed of the processor (in Mflop/s), regardless of + the current load on the machine. + */ +double MSG_get_host_speed(m_host_t h) +{ + xbt_assert0((h!= NULL), "Invalid parameters"); + + return(surf_workstation_resource-> + extension_public->get_speed(h->simdata->host,1.0)); +} + +/** \ingroup msg_gos_functions + * \brief Determine if a host is available. + * + * \param h host to test + */ +int MSG_host_is_avail (m_host_t h) +{ + e_surf_cpu_state_t cpustate; + xbt_assert0((h!= NULL), "Invalid parameters"); + + cpustate = + surf_workstation_resource->extension_public->get_state(h->simdata->host); + + xbt_assert0((cpustate == SURF_CPU_ON || cpustate == SURF_CPU_OFF), + "Invalid cpu state"); + + return (cpustate==SURF_CPU_ON); +}