X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/7a25b8e6a7aae6d40849189e58495aee0d8f726f..31b7fa457f9267af8eda2eee06aae74dd78eb412:/src/simix/network_private.h diff --git a/src/simix/network_private.h b/src/simix/network_private.h index 292e6562d0..2f68f85e9d 100644 --- a/src/simix/network_private.h +++ b/src/simix/network_private.h @@ -32,17 +32,18 @@ smx_action_t SIMIX_rdv_get_head(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 *data, + int detached); smx_action_t SIMIX_comm_irecv(smx_process_t dst_proc, smx_rdv_t rdv, void *dst_buff, size_t *dst_buff_size, int (*)(void *, void *), void *data); void SIMIX_comm_destroy(smx_action_t action); void SIMIX_comm_destroy_internal_actions(smx_action_t action); -void SIMIX_pre_comm_wait(smx_req_t req); -void SIMIX_pre_comm_waitany(smx_req_t req, unsigned int idx); +void SIMIX_pre_comm_wait(smx_req_t req, int idx); +void SIMIX_pre_comm_waitany(smx_req_t req, int idx); void SIMIX_post_comm(smx_action_t action); void SIMIX_pre_comm_test(smx_req_t req); -void SIMIX_pre_comm_testany(smx_req_t req, unsigned int idx); +void SIMIX_pre_comm_testany(smx_req_t req, int idx); void SIMIX_comm_cancel(smx_action_t action); double SIMIX_comm_get_remains(smx_action_t action); e_smx_state_t SIMIX_comm_get_state(smx_action_t action);