X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/11ae3bfac7b4c85a23e220b9d0755449a622a37b..1bf033cc925aa31693ef5163ea056fde5b75ff1e:/src/msg/msg_mailbox.cpp diff --git a/src/msg/msg_mailbox.cpp b/src/msg/msg_mailbox.cpp index 218671054d..12bb63293e 100644 --- a/src/msg/msg_mailbox.cpp +++ b/src/msg/msg_mailbox.cpp @@ -1,17 +1,12 @@ /* Mailboxes in MSG */ -/* Copyright (c) 2008-2015. The SimGrid Team. - * All rights reserved. */ +/* Copyright (c) 2008-2018. 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. */ -#include - -#include "simgrid/msg.h" -#include "msg_private.h" -#include "simgrid/s4u/Actor.hpp" #include "simgrid/s4u/Mailbox.hpp" +#include "src/msg/msg_private.hpp" XBT_LOG_NEW_DEFAULT_SUBCATEGORY(msg_mailbox, msg, "Logging specific to MSG (mailbox)"); @@ -25,8 +20,6 @@ XBT_LOG_NEW_DEFAULT_SUBCATEGORY(msg_mailbox, msg, "Logging specific to MSG (mail * \param alias The name of the mailbox */ void MSG_mailbox_set_async(const char *alias){ - simgrid::s4u::MailboxPtr mailbox = simgrid::s4u::Mailbox::byName(alias); - mailbox->setReceiver(simgrid::s4u::Actor::self()); + simgrid::s4u::Mailbox::by_name(alias)->set_receiver(simgrid::s4u::Actor::self()); XBT_VERB("%s mailbox set to receive eagerly for myself\n",alias); } -