X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/111a7eba5a52860dee57b3a28c7fb84d7950be56..d468bfe9e511204a05ddff628f356b8966963e55:/src/simix/smx_network.cpp diff --git a/src/simix/smx_network.cpp b/src/simix/smx_network.cpp index 1a4b57743c..22003ece7d 100644 --- a/src/simix/smx_network.cpp +++ b/src/simix/smx_network.cpp @@ -50,7 +50,7 @@ smx_mailbox_t SIMIX_mbox_create(const char *name) /* two processes may have pushed the same mbox_create simcall at the same time */ smx_mailbox_t mbox = static_cast(xbt_dict_get_or_null(mailboxes, name)); if (!mbox) { - mbox = new simgrid::simix::Mailbox(name); + mbox = new simgrid::simix::MailboxImpl(name); XBT_DEBUG("Creating a mailbox at %p with name %s", mbox, name); xbt_dict_set(mailboxes, mbox->name, mbox, nullptr); }