Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[s4u] Mailbox::receiver return a s4u::ActorPtr
[simgrid.git] / include / simgrid / s4u / comm.hpp
index 4715435..47c7332 100644 (file)
@@ -8,6 +8,7 @@
 #define SIMGRID_S4U_COMM_HPP
 
 #include <xbt/base.h>
+
 #include <simgrid/s4u/Activity.hpp>
 #include <simgrid/s4u/forward.hpp>
 #include <simgrid/s4u/mailbox.hpp>
@@ -25,13 +26,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;