X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/fbecf54f013a2c4171160f4aad8a4d8377bee1f9..09be3731dc0739ab7e4cdb00716335b60acb4331:/src/kernel/activity/MailboxImpl.cpp diff --git a/src/kernel/activity/MailboxImpl.cpp b/src/kernel/activity/MailboxImpl.cpp index ad182f233a..218fce731e 100644 --- a/src/kernel/activity/MailboxImpl.cpp +++ b/src/kernel/activity/MailboxImpl.cpp @@ -6,15 +6,17 @@ #include "src/kernel/activity/MailboxImpl.hpp" #include "src/kernel/activity/CommImpl.hpp" +#include + XBT_LOG_NEW_DEFAULT_SUBCATEGORY(simix_mailbox, simix, "Mailbox implementation"); -static std::map* mailboxes = new std::map; +static std::unordered_map mailboxes; void SIMIX_mailbox_exit() { - for (auto const& elm : *mailboxes) + for (auto const& elm : mailboxes) delete elm.second; - delete mailboxes; + mailboxes.clear(); } /******************************************************************************/ @@ -27,8 +29,8 @@ namespace activity { /** @brief Returns the mailbox of that name, or nullptr */ MailboxImpl* MailboxImpl::by_name_or_null(const std::string& name) { - auto mbox = mailboxes->find(name); - if (mbox != mailboxes->end()) + auto mbox = mailboxes.find(name); + if (mbox != mailboxes.end()) return mbox->second; else return nullptr; @@ -38,11 +40,11 @@ MailboxImpl* MailboxImpl::by_name_or_null(const std::string& name) MailboxImpl* MailboxImpl::by_name_or_create(const std::string& name) { /* two processes may have pushed the same mbox_create simcall at the same time */ - auto m = mailboxes->find(name); - if (m == mailboxes->end()) { - smx_mailbox_t mbox = new MailboxImpl(name); + auto m = mailboxes.find(name); + if (m == mailboxes.end()) { + MailboxImpl* mbox = new MailboxImpl(name); XBT_DEBUG("Creating a mailbox at %p with name %s", mbox, name.c_str()); - (*mailboxes)[mbox->name_] = mbox; + mailboxes[name] = mbox; return mbox; } else return m->second; @@ -151,6 +153,6 @@ CommImplPtr MailboxImpl::find_matching_comm(CommImpl::Type type, int (*match_fun XBT_DEBUG("No matching communication synchro found"); return nullptr; } -} -} -} +} // namespace activity +} // namespace kernel +} // namespace simgrid