From: Martin Quinson Date: Sat, 6 Aug 2016 00:17:25 +0000 (+0200) Subject: slight update to an ancient FAQ entry X-Git-Tag: v3_14~625 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/3822f6694a3dff704094df6a86ece9c253b271e2?ds=sidebyside slight update to an ancient FAQ entry --- diff --git a/doc/doxygen/FAQ.doc b/doc/doxygen/FAQ.doc index c5d64e9ac0..704cb5ab2f 100644 --- a/doc/doxygen/FAQ.doc +++ b/doc/doxygen/FAQ.doc @@ -135,19 +135,12 @@ you still don't see how to do it, please come back to us... \subsubsection faq_MIA_asynchronous I want to do asynchronous communications in MSG -In the past (version <= 3.4), there was no function to perform asynchronous communications. -It could easily be implemented by creating new process when needed though. Since version 3.5, -we have introduced the following functions: - - MSG_task_isend() - - MSG_task_irecv() - - MSG_comm_test() - - MSG_comm_wait() - - MSG_comm_waitall() - - MSG_comm_waitany() - - MSG_comm_destroy() - -We refer you to the description of these functions for more details on their usage as well -as to the example section on \ref MSG_ex_asynchronous_communications. +You are probably looking for the following functions: +MSG_task_isend() and MSG_task_irecv(); +MSG_comm_test(), MSG_comm_wait(), MSG_comm_waitall() and MSG_comm_waitany(); +MSG_comm_destroy(). + +There is even a specific example section on \ref MSG_ex_asynchronous_communications. \subsubsection faq_MIA_thread_synchronization I need to synchronize my MSG processes