Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Check if the host is down at the end of a SIMIX_io_finish
[simgrid.git] / src / simix / smx_process_private.h
index 73fc714..c6ac97a 100644 (file)
@@ -36,8 +36,7 @@ typedef struct s_smx_process {
   xbt_dict_t properties;
   s_smx_simcall_t simcall;
   void *data;                   /* kept for compatibility, it should be replaced with moddata */
-  xbt_dynar_t on_exit_fun;     /* list of functions executed when the process dies */
-  xbt_dynar_t on_exit_args;    /* arguments (void*) of the functions executed when the process dies */
+  xbt_dynar_t on_exit;     /* list of functions executed when the process dies */
 } s_smx_process_t;
 
 typedef struct s_smx_process_arg {
@@ -92,6 +91,4 @@ void SIMIX_process_sleep_suspend(smx_action_t action);
 void SIMIX_process_sleep_resume(smx_action_t action);
 void SIMIX_process_sleep_destroy(smx_action_t action);
 
-void SIMIX_process_on_exit(smx_process_t process);
-void SIMIX_process_on_exit_add(int_f_pvoid_t fun, void *data);
 #endif