X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/159f1801b853c2fa95755636d4845b3dbd68ff4f..1b47d369792c9dcc53eb1212353fe944cb697201:/src/simix/network_private.h diff --git a/src/simix/network_private.h b/src/simix/network_private.h index 80c0a7cc67..b3c74781f5 100644 --- a/src/simix/network_private.h +++ b/src/simix/network_private.h @@ -38,7 +38,9 @@ void SIMIX_comm_send(smx_process_t src_proc, smx_rdv_t rdv, smx_action_t SIMIX_comm_isend(smx_process_t src_proc, smx_rdv_t rdv, double task_size, double rate, void *src_buff, size_t src_buff_size, - int (*)(void *, void *), void *data, + int (*)(void *, void *), + void (*clean_fun)(void *), // used to free the action in case of problem after a detached send + void *data, int detached); void SIMIX_comm_recv(smx_process_t dst_proc, smx_rdv_t rdv, void *dst_buff, size_t *dst_buff_size,