X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/17b3d85fb091cd19e28757287829d65a8debe3e3..4b0fa756ae6e58a74c374a519389ecb9e8b6a4d9:/include/simgrid/comm.h diff --git a/include/simgrid/comm.h b/include/simgrid/comm.h index 933cd70b1c..d9d685519b 100644 --- a/include/simgrid/comm.h +++ b/include/simgrid/comm.h @@ -12,7 +12,14 @@ /* C interface */ SG_BEGIN_DECL +XBT_PUBLIC void sg_comm_detach(sg_comm_t comm, void (*clean_function)(void*)); +XBT_PUBLIC int sg_comm_test(sg_comm_t comm); +XBT_PUBLIC sg_error_t sg_comm_wait(sg_comm_t comm); +XBT_PUBLIC sg_error_t sg_comm_wait_for(sg_comm_t comm, double timeout); +XBT_PUBLIC void sg_comm_wait_all(sg_comm_t* comms, size_t count); XBT_PUBLIC int sg_comm_wait_any_for(sg_comm_t* comms, size_t count, double timeout); +XBT_PUBLIC int sg_comm_wait_any(sg_comm_t* comms, size_t count); +XBT_PUBLIC void sg_comm_unref(sg_comm_t comm); SG_END_DECL