Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Do not request status if not requested by caller.
[simgrid.git] / src / bindings / lua / lua_stub_generator.h
1 /* This program is free software; you can redistribute it and/or modify it
2  * under the terms of the license (GNU LGPL) which comes with this package. */
3
4 #ifndef GRAS_STUB_GENERATOR_H
5 #define GRAS_STUB_GENERATOR_H
6
7 #include "xbt/dynar.h"
8 #include "xbt/dict.h"
9 xbt_dict_t process_function_set;
10 xbt_dynar_t process_list;
11 xbt_dict_t machine_set;
12
13 typedef struct s_process_t {
14   int argc;
15   char **argv;
16   char *host;
17 } s_process_t;
18
19 char *warning;
20
21 void s_process_free(void *process);
22
23 /* UNIX files */
24 void generate_sim(const char *project);
25 void generate_rl(const char *project);
26 void generate_makefile_am(const char *project);
27 void generate_makefile_local(const char *project);
28
29 #endif