X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/ff2bf6c94637f28c0c219e9adc61a11e78be1900..edf6d3b977f403bf045796b7c25bc56fe6770f2b:/include/simgrid/s4u/comm.hpp diff --git a/include/simgrid/s4u/comm.hpp b/include/simgrid/s4u/comm.hpp index 471543520e..297779873e 100644 --- a/include/simgrid/s4u/comm.hpp +++ b/include/simgrid/s4u/comm.hpp @@ -25,13 +25,13 @@ public: ~Comm() override; public: - /** Creates (but don't start) an async send to the mailbox #dest */ + /** Creates (but don't start) an async send to the mailbox @p dest */ static Comm &send_init(Mailbox &dest); - /** Creates and start an async send to the mailbox #dest */ + /** Creates and start an async send to the mailbox @p dest */ static Comm &send_async(Mailbox &dest, void *data, int simulatedByteAmount); - /** Creates (but don't start) an async recv onto the mailbox #from */ + /** Creates (but don't start) an async recv onto the mailbox @p from */ static Comm &recv_init(Mailbox &from); - /** Creates and start an async recv to the mailbox #from */ + /** Creates and start an async recv to the mailbox @p from */ static Comm &recv_async(Mailbox &from, void **data); void start() override;