Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[gras] Don't define variables twice.
[simgrid.git] / src / bindings / lua / simgrid_lua.h
index 3bbca15..9177495 100644 (file)
@@ -23,9 +23,9 @@
 #include <stdarg.h>
 
 
-xbt_dict_t process_function_set;
-xbt_dynar_t process_list;
-xbt_dict_t machine_set;
+extern xbt_dict_t process_function_set;
+extern xbt_dynar_t process_list;
+extern xbt_dict_t machine_set;
 
 typedef struct s_process_t {
   int argc;
@@ -33,8 +33,6 @@ typedef struct s_process_t {
   char *host;
 } s_process_t;
 
-char *warning;
-
 void s_process_free(void *process);
 
 /* UNIX files */
@@ -71,6 +69,7 @@ typedef struct t_host_attr {
   //deployment attribute
   const char *function;
   xbt_dynar_t args_list;
+  xbt_dict_t properties;
 } host_attr, *p_host_attr;
 
 
@@ -106,6 +105,7 @@ int console_add_link(lua_State*);
 int console_add_route(lua_State*);
 int console_add_AS(lua_State*);
 int console_set_function(lua_State*);
+int console_host_set_property(lua_State*);
 
 int console_parse_platform(void);
 int console_parse_application(void);