X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/40e0bf5686dc6da940c2dfe33c2e8b4824fefb8f..f1b9a69521aa116f619cdbd75779899775b31be3:/src/s4u/s4u_Mailbox.cpp diff --git a/src/s4u/s4u_Mailbox.cpp b/src/s4u/s4u_Mailbox.cpp index a810de4770..e33292eb30 100644 --- a/src/s4u/s4u_Mailbox.cpp +++ b/src/s4u/s4u_Mailbox.cpp @@ -140,13 +140,13 @@ void* Mailbox::get(double timeout) } // namespace simgrid /* **************************** Public C interface *************************** */ -/** \brief Set the mailbox to receive in asynchronous mode +/** @brief Set the mailbox to receive in asynchronous mode * * All messages sent to this mailbox will be transferred to the receiver without waiting for the receive call. * The receive call will still be necessary to use the received data. * If there is a need to receive some messages asynchronously, and some not, two different mailboxes should be used. * - * \param alias The name of the mailbox + * @param alias The name of the mailbox */ void sg_mailbox_set_receiver(const char* alias) { @@ -154,10 +154,10 @@ void sg_mailbox_set_receiver(const char* alias) XBT_VERB("%s mailbox set to receive eagerly for myself\n", alias); } -/** \brief Check if there is a communication going on in a mailbox. +/** @brief Check if there is a communication going on in a mailbox. * - * \param alias the name of the mailbox to be considered - * \return Returns 1 if there is a communication, 0 otherwise + * @param alias the name of the mailbox to be considered + * @return Returns 1 if there is a communication, 0 otherwise */ int sg_mailbox_listen(const char* alias) {