Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[S4U] declare the classes as public for Windows
[simgrid.git] / include / simgrid / s4u / mailbox.hpp
index c519700..93dad67 100644 (file)
@@ -8,7 +8,8 @@
 
 #include <boost/unordered_map.hpp>
 
-#include "actor.hpp"
+#include <xbt/base.h>
+#include <simgrid/s4u/actor.hpp>
 
 namespace simgrid {
 namespace s4u {
@@ -22,8 +23,7 @@ class Comm;
  * You can access any mailbox without any latency. The network delay are only related to the location of the
  * sender and receiver.
  */
-class Mailbox {
-       friend Actor; // FIXME: remove it when recv async exist
+XBT_PUBLIC_CLASS Mailbox {
        friend Comm;
 
 private:
@@ -35,13 +35,15 @@ protected:
        smx_rdv_t getInferior() { return p_inferior; }
 
 public:
+       /** Get the name of that mailbox */
+       const char *getName();
        /** Retrieve the mailbox associated to the given string */
        static Mailbox *byName(const char *name);
 
 private:
        std::string p_name;
        smx_rdv_t p_inferior;
-       static boost::unordered_map<std::string, Mailbox *> *channels;
+       static boost::unordered_map<std::string, Mailbox *> *mailboxes;
 };
 }} // namespace simgrid::s4u