X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/1108fc19974fc68a9d079ff07b5d4363bf8b9a8b..825fe6086e463bfd069172bd45a6e39a83796d19:/include/simgrid/s4u/mailbox.hpp diff --git a/include/simgrid/s4u/mailbox.hpp b/include/simgrid/s4u/mailbox.hpp index cb3369ffe9..c519700750 100644 --- a/include/simgrid/s4u/mailbox.hpp +++ b/include/simgrid/s4u/mailbox.hpp @@ -13,6 +13,8 @@ namespace simgrid { namespace s4u { +class Comm; + /** @brief Mailboxes * * Rendez-vous point for network communications, similar to URLs on which you could post and retrieve data. @@ -21,7 +23,8 @@ namespace s4u { * sender and receiver. */ class Mailbox { - friend Actor; + friend Actor; // FIXME: remove it when recv async exist + friend Comm; private: Mailbox(const char*name, smx_rdv_t inferior);