Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
MSG/SIMIX Initial files. Only functions prototypes, not implemented yet.
[simgrid.git] / src / msg_simix / environment.c
1
2 #include "private.h"
3 #include "xbt/sysdep.h"
4 #include "xbt/log.h"
5
6 /** \defgroup msg_easier_life      Platform and Application management
7  *  \brief This section describes functions to manage the platform creation
8  *  and the application deployment. You should also have a look at 
9  *  \ref MSG_examples  to have an overview of their usage.
10  *    \htmlonly <!-- DOXYGEN_NAVBAR_LABEL="Platforms and Applications" --> \endhtmlonly
11  * 
12  */
13
14 /********************************* MSG **************************************/
15
16 /** \ingroup msg_easier_life
17  * \brief A name directory service...
18  *
19  * Finds a m_host_t using its name.
20  * \param name the name of an host.
21  * \return the corresponding host
22  */
23 m_host_t MSG_get_host_by_name(const char *name)
24 {
25         return NULL;
26 }
27
28 /** \ingroup msg_easier_life
29  * \brief A platform constructor.
30  *
31  * Creates a new platform, including hosts, links and the
32  * routing_table. 
33  * \param file a filename of a xml description of a platform. This file 
34  * follows this DTD :
35  *
36  *     \include surfxml.dtd
37  *
38  * Here is a small example of such a platform 
39  *
40  *     \include small_platform.xml
41  *
42  * Have a look in the directory examples/msg/ to have a big example.
43  */
44 void MSG_create_environment(const char *file) 
45 {
46   return;
47 }
48