X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/e469af84f265bb6bd333528c6d7aff6a232b2ee8..5ed37babb2fa9097abe82df299c0aa259ed84d5a:/src/s4u/s4u_Mailbox.cpp?ds=sidebyside diff --git a/src/s4u/s4u_Mailbox.cpp b/src/s4u/s4u_Mailbox.cpp index cd8da0d480..0ebd9cfc62 100644 --- a/src/s4u/s4u_Mailbox.cpp +++ b/src/s4u/s4u_Mailbox.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2006-2022. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2006-2023. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -12,10 +12,9 @@ XBT_LOG_EXTERNAL_CATEGORY(s4u); XBT_LOG_NEW_DEFAULT_SUBCATEGORY(s4u_channel, s4u, "S4U Communication Mailboxes"); -namespace simgrid { -namespace s4u { +namespace simgrid::s4u { -const xbt::string& Mailbox::get_name() const +const std::string& Mailbox::get_name() const { return pimpl_->get_name(); } @@ -135,12 +134,12 @@ Mailbox::iprobe(int type, const std::functioniprobe(type, match_fun, data); }); } -void Mailbox::clear() { - kernel::actor::simcall_answered([this]() { this->pimpl_->clear(); }); +void Mailbox::clear() +{ + kernel::actor::simcall_answered([this]() { this->pimpl_->clear(true); }); } -} // namespace s4u -} // namespace simgrid +} // namespace simgrid::s4u /* **************************** Public C interface *************************** */ sg_mailbox_t sg_mailbox_by_name(const char* alias)