Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Kill the types xbt_context_function_t, smx_process_code_t and m_process_code_t; use...
[simgrid.git] / src / msg / private.h
index 98cd856..459a10b 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;
@@ -106,7 +106,7 @@ void __MSG_display_process_status(void);
 
 void __MSG_process_cleanup(void *arg);
 m_process_t __MSG_process_create_with_arguments(const char *name,
-                                               m_process_code_t code, void *data,
+                                               xbt_main_func_t code, void *data,
                                                char * hostname, int argc, char **argv);