Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
aab4aac3c239325b8761d860641d8f05a83ac44a
[simgrid.git] / src / msg_simix / deployment.c
1
2 #include "private.h"
3 #include "xbt/sysdep.h"
4 #include "xbt/log.h"
5
6
7 /** \ingroup msg_easier_life
8  * \brief An application deployer.
9  *
10  * Creates the process described in \a file.
11  * \param file a filename of a xml description of the application. This file 
12  * follows this DTD :
13  *
14  *     \include surfxml.dtd
15  *
16  * Here is a small example of such a platform 
17  *
18  *     \include small_deployment.xml
19  *
20  * Have a look in the directory examples/msg/ to have a bigger example.
21  */
22 void MSG_launch_application(const char *file) 
23 {
24
25         return;
26 }
27
28 /** \ingroup msg_easier_life
29  * \brief Registers a #m_process_code_t code in a global table.
30  *
31  * Registers a code function in a global table. 
32  * This table is then used by #MSG_launch_application. 
33  * \param name the reference name of the function.
34  * \param code the function
35  */
36 void MSG_function_register(const char *name,m_process_code_t code)
37 {
38         return;
39 }
40
41 /** \ingroup msg_easier_life
42  * \brief Registers a #m_process_t code in a global table.
43  *
44  * Registers a code function in a global table. 
45  * This table is then used by #MSG_launch_application. 
46  * \param name the reference name of the function.
47  */
48 m_process_code_t MSG_get_registered_function(const char *name)
49 {
50   m_process_code_t code = NULL;
51
52
53   return code;
54 }
55