Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
* Cleanup the DTD by renaming:
[simgrid.git] / include / gras / process.h
index 32eb803..335a9c1 100644 (file)
 #define GRAS_PROCESS_H
 
 #include "xbt/misc.h"  /* SG_BEGIN_DECL */
+#include "xbt/dict.h"
 
 SG_BEGIN_DECL()
 
-/* **************************************************************************
- * Initializing the processes
- * **************************************************************************/
-/**
- * gras_process_init:
- * 
- * Perform the various intialisations needed by gras. Each process must run it
- */
-XBT_PUBLIC(void) gras_process_init(void);
-
-/**
- * gras_process_exit:
- * 
- * Frees the memory allocated by gras. Processes should run it
- */
-XBT_PUBLIC(void) gras_process_exit(void);
-
+void gras_agent_spawn(const char *name, void *data, xbt_main_func_t code, int argc, char *argv[], xbt_dict_t properties);
+  
+  
 /****************************************************************************/
 /* Manipulating User Data                                                   */
 /****************************************************************************/