Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
this isn't used since at least 4 years
[simgrid.git] / src / msg / private.h
index 80ac9e2..d193688 100644 (file)
@@ -69,7 +69,7 @@ typedef struct simdata_process {
 
 typedef struct process_arg {
   const char *name;
-  m_process_code_t code;
+  xbt_main_func_t code;
   void *data;
   m_host_t m_host;
   int argc;
@@ -104,9 +104,11 @@ void __MSG_host_destroy(m_host_t host);
 
 void __MSG_display_process_status(void);
 
-m_process_t __MSG_process_create_with_arguments(const char *name,
-                                               m_process_code_t code, void *data,
-                                               char * hostname, int argc, char **argv);
+void __MSG_process_cleanup(void *arg);
+void *_MSG_process_create_from_SIMIX(const char *name,
+                                    xbt_main_func_t code, void *data,
+                                    char * hostname, int argc, char **argv);
+void _MSG_process_kill_from_SIMIX(void *p);
 
 
 #endif