X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/5001c11df4c0d47229ce8c6293ee2fbbb61f802e..172a73b13fe909117c7fbf3d69d4ce5e87efdbc6:/src/msg/msg_mailbox.cpp diff --git a/src/msg/msg_mailbox.cpp b/src/msg/msg_mailbox.cpp index f1fd0c36ee..791e59d738 100644 --- a/src/msg/msg_mailbox.cpp +++ b/src/msg/msg_mailbox.cpp @@ -1,19 +1,17 @@ /* Mailboxes in MSG */ -/* Copyright (c) 2008-2015. The SimGrid Team. - * All rights reserved. */ +/* Copyright (c) 2008-2017. 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/mailbox.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)"); +extern "C" { + /** \ingroup msg_mailbox_management * \brief Set the mailbox to receive in asynchronous mode * @@ -25,8 +23,7 @@ XBT_LOG_NEW_DEFAULT_SUBCATEGORY(msg_mailbox, msg, "Logging specific to MSG (mail */ void MSG_mailbox_set_async(const char *alias){ simgrid::s4u::MailboxPtr mailbox = simgrid::s4u::Mailbox::byName(alias); - - simcall_mbox_set_receiver(mailbox->getImpl(), SIMIX_process_self()); + mailbox->setReceiver(simgrid::s4u::Actor::self()); XBT_VERB("%s mailbox set to receive eagerly for myself\n",alias); } - +}