Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
cosmetics: enforce prototype checking on callbacks in SIMIX_function_register_process...
[simgrid.git] / src / msg / private.h
index 459a10b..d193688 100644 (file)
@@ -105,9 +105,10 @@ void __MSG_host_destroy(m_host_t host);
 void __MSG_display_process_status(void);
 
 void __MSG_process_cleanup(void *arg);
-m_process_t __MSG_process_create_with_arguments(const char *name,
-                                               xbt_main_func_t code, void *data,
-                                               char * hostname, int argc, char **argv);
+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