X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/806504b9602a886e391b54e458b2c1f7f42d3afb..a1ba88402bfb88a278d2e7c849441a9ed4a26120:/src/simix/network_private.h diff --git a/src/simix/network_private.h b/src/simix/network_private.h index f7f2ce9066..8d65b75890 100644 --- a/src/simix/network_private.h +++ b/src/simix/network_private.h @@ -21,7 +21,7 @@ void SIMIX_network_init(void); void SIMIX_network_exit(void); #ifdef HAVE_LATENCY_BOUND_TRACKING -XBT_PUBLIC(int) SIMIX_comm_is_latency_bounded(smx_action_t comm); +XBT_INLINE XBT_PUBLIC(int) SIMIX_comm_is_latency_bounded(smx_action_t comm); #endif smx_rdv_t SIMIX_rdv_create(const char *name); @@ -38,11 +38,11 @@ smx_action_t SIMIX_comm_irecv(smx_process_t dst_proc, smx_rdv_t rdv, 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); +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); +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);