X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/1d32796efe1be63d7a67b8718527fa03a32c4baa..714a970003a5bccec9a46b0a4e0b42b5d980ea2f:/src/simix/smx_network_private.h diff --git a/src/simix/smx_network_private.h b/src/simix/smx_network_private.h index 51c64cf373..ee5d53b293 100644 --- a/src/simix/smx_network_private.h +++ b/src/simix/smx_network_private.h @@ -32,6 +32,8 @@ smx_rdv_t SIMIX_rdv_get_by_name(const char *name); void SIMIX_rdv_remove(smx_rdv_t rdv, smx_action_t comm); int SIMIX_rdv_comm_count_by_host(smx_rdv_t rdv, smx_host_t host); smx_action_t SIMIX_rdv_get_head(smx_rdv_t rdv); +void SIMIX_rdv_set_receiver(smx_rdv_t rdv, smx_process_t proc); +smx_process_t SIMIX_rdv_get_receiver(smx_rdv_t rdv); void SIMIX_comm_start(smx_action_t action); void SIMIX_comm_send(smx_process_t src_proc, smx_rdv_t rdv, double task_size, double rate, @@ -55,6 +57,8 @@ smx_action_t SIMIX_comm_irecv(smx_process_t dst_proc, smx_rdv_t rdv, void SIMIX_comm_destroy(smx_action_t action); void SIMIX_comm_destroy_internal_actions(smx_action_t action); void SIMIX_pre_comm_wait(smx_simcall_t simcall, smx_action_t action, double timeout, int idx); +smx_action_t SIMIX_comm_iprobe(smx_process_t dst_proc, smx_rdv_t rdv, int src, + int tag, int (*match_fun)(void *, void *, smx_action_t), void *data); void SIMIX_pre_comm_waitany(smx_simcall_t simcall, int idx); void SIMIX_post_comm(smx_action_t action); void SIMIX_pre_comm_test(smx_simcall_t simcall);