X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/9856e530871afa8c75fda68ab7cbc718e9ba7e95..d7bc42299b363a112f3b8154e95cd80706cda6d2:/include/simgrid/s4u/Mailbox.hpp diff --git a/include/simgrid/s4u/Mailbox.hpp b/include/simgrid/s4u/Mailbox.hpp index 196c19efcb..a885cbad11 100644 --- a/include/simgrid/s4u/Mailbox.hpp +++ b/include/simgrid/s4u/Mailbox.hpp @@ -10,7 +10,6 @@ #include #include #include -#include #include #include @@ -36,7 +35,7 @@ protected: public: /** @brief Retrieves the name of that mailbox as a C++ string */ - const xbt::string& get_name() const; + const std::string& get_name() const; /** @brief Retrieves the name of that mailbox as a C string */ const char* get_cname() const; @@ -99,8 +98,8 @@ public: */ CommPtr put_async(void* data, uint64_t simulated_size_in_bytes); - kernel::activity::ActivityImplPtr iprobe(int type, bool (*match_fun)(void*, void*, kernel::activity::CommImpl*), - void* data); + kernel::activity::ActivityImplPtr + iprobe(int type, const std::function& match_fun, void* data); /** Blocking data transmission. * * Please note that if you send a pointer to some data, you must ensure that your data remains live during the @@ -110,7 +109,9 @@ public: /** Blocking data transmission with timeout */ void put(void* payload, uint64_t simulated_size_in_bytes, double timeout); - /** Creates (but don't start) a data reception onto that mailbox */ + /** Creates (but don't start) a data reception onto that mailbox. + * @verbatim embed:rst:inline You probably want to use :cpp:func:`simgrid::s4u::Comm::set_dst_data` and friends before + * starting that activity. @endverbatim */ CommPtr get_init(); /** Creates and start an async data reception to that mailbox */ template CommPtr get_async(T** data); @@ -122,6 +123,8 @@ public: /** Blocking data reception with timeout */ template T* get(double timeout); template std::unique_ptr get_unique(double timeout) { return std::unique_ptr(get(timeout)); } + + void clear(); }; template CommPtr Mailbox::get_async(T** data)