]> AND Public Git Repository - simgrid.git/blobdiff - src/msg/msg_environment.c
Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
oops, we broke non-model-checking builds yesterday. Sorry guys
[simgrid.git] / src / msg / msg_environment.c
index d4786a7585fddafe3cd7d2ba9e0a57761f09ae3f..5814f781898b9fdf40bdd7f6487d694abdff28bd 100644 (file)
 #include <lualib.h>
 #endif
 
-/** @addtogroup msg_easier_life
- *    \htmlonly <!-- DOXYGEN_NAVBAR_LABEL="Platforms and Applications" --> \endhtmlonly
- * 
- */
-
 /********************************* MSG **************************************/
 
-/** \ingroup msg_easier_life
- * \brief A name directory service...
- *
- * Finds a m_host_t using its name.
- * \param name the name of an host.
- * \return the corresponding host
- */
-m_host_t MSG_get_host_by_name(const char *name)
-{
-  smx_host_t simix_h = NULL;
-  simix_h = simcall_host_get_by_name(name);
-
-  if (simix_h == NULL)
-    return NULL;
-
-  return (m_host_t) simcall_host_get_data(simix_h);
-}
-
-/** \ingroup msg_easier_life
+/** \ingroup msg_simulation
  * \brief A platform constructor.
  *
  * Creates a new platform, including hosts, links and the
@@ -66,7 +43,7 @@ void MSG_create_environment(const char *file)
   /* Initialize MSG hosts */
   xbt_lib_foreach(host_lib, cursor, name, data) {
     if(data[SIMIX_HOST_LEVEL])
-      __MSG_host_create((smx_host_t)data[SIMIX_HOST_LEVEL], NULL);
+      __MSG_host_create((smx_host_t)data[SIMIX_HOST_LEVEL]);
   }
 }