X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/ae486da8d6f00286ea3bf487c83978598c2f8bc6..9b5c287fbf93c2ae7c3d18c8584647ef9920fe87:/src/s4u/s4u_Mailbox.cpp diff --git a/src/s4u/s4u_Mailbox.cpp b/src/s4u/s4u_Mailbox.cpp index 52a0874540..d9d6c6c97b 100644 --- a/src/s4u/s4u_Mailbox.cpp +++ b/src/s4u/s4u_Mailbox.cpp @@ -15,7 +15,7 @@ XBT_LOG_NEW_DEFAULT_SUBCATEGORY(s4u_channel, s4u, "S4U Communication Mailboxes") namespace simgrid { namespace s4u { -const simgrid::xbt::string& Mailbox::get_name() const +const xbt::string& Mailbox::get_name() const { return pimpl_->get_name(); } @@ -25,13 +25,13 @@ const char* Mailbox::get_cname() const return pimpl_->get_cname(); } -MailboxPtr Mailbox::by_name(const std::string& name) +Mailbox* Mailbox::by_name(const std::string& name) { kernel::activity::MailboxImpl* mbox = kernel::activity::MailboxImpl::by_name_or_null(name); if (mbox == nullptr) { - mbox = simix::simcall([name] { return kernel::activity::MailboxImpl::by_name_or_create(name); }); + mbox = kernel::actor::simcall([&name] { return kernel::activity::MailboxImpl::by_name_or_create(name); }); } - return MailboxPtr(&mbox->piface_, true); + return &mbox->piface_; } bool Mailbox::empty() @@ -63,7 +63,7 @@ kernel::activity::CommImplPtr Mailbox::front() void Mailbox::set_receiver(ActorPtr actor) { - simix::simcall([this, actor]() { this->pimpl_->set_receiver(actor); }); + kernel::actor::simcall([this, actor]() { this->pimpl_->set_receiver(actor); }); } /** @brief get the receiver (process associated to the mailbox) */ @@ -152,7 +152,7 @@ void* Mailbox::get(double timeout) smx_activity_t Mailbox::iprobe(int type, int (*match_fun)(void*, void*, kernel::activity::CommImpl*), void* data) { - return simix::simcall([this, type, match_fun, data] { return pimpl_->iprobe(type, match_fun, data); }); + return kernel::actor::simcall([this, type, match_fun, data] { return pimpl_->iprobe(type, match_fun, data); }); } } // namespace s4u } // namespace simgrid