Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Fix the doc!
[simgrid.git] / src / msg / host.c
index cfc43c5..8764477 100644 (file)
@@ -11,6 +11,8 @@
 
 /** \defgroup m_host_management Management functions of Hosts
  *  \brief This section describes the host structure of MSG
+ * 
+ *     \htmlonly <!-- DOXYGEN_NAVBAR_LABEL="Hosts" --> \endhtmlonly
  * (#m_host_t) and the functions for managing it.
  *  
  *  A <em>location</em> (or <em>host</em>) is any possible place where
@@ -175,7 +177,7 @@ int MSG_get_host_msgload(m_host_t h)
 }
 
 /** \ingroup m_host_management
- * \brief Return the speed of the processor (in Mflop/s), regardless of 
+ * \brief Return the speed of the processor (in flop/s), regardless of 
     the current load on the machine.
  */
 double MSG_get_host_speed(m_host_t h)
@@ -193,9 +195,10 @@ double MSG_get_host_speed(m_host_t h)
  */
 int MSG_host_is_avail (m_host_t h)
 {
+  e_surf_cpu_state_t cpustate;
   xbt_assert0((h!= NULL), "Invalid parameters");
 
-  e_surf_cpu_state_t cpustate =
+  cpustate =
     surf_workstation_resource->extension_public->get_state(h->simdata->host);
 
   xbt_assert0((cpustate == SURF_CPU_ON || cpustate == SURF_CPU_OFF),