X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/d8b7c68e680779249d9b06a00537b2a68485a14d..f1e469ce075c0a1ad21a7fd0fdb587f9a3cb5289:/include/simgrid/s4u/Mailbox.hpp diff --git a/include/simgrid/s4u/Mailbox.hpp b/include/simgrid/s4u/Mailbox.hpp index 37dceac1ad..62c36fdd59 100644 --- a/include/simgrid/s4u/Mailbox.hpp +++ b/include/simgrid/s4u/Mailbox.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2006-2015. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2006-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. */ @@ -106,11 +106,11 @@ namespace s4u { XBT_PUBLIC_CLASS Mailbox { friend Comm; friend simgrid::s4u::Engine; - friend simgrid::simix::Mailbox; + friend simgrid::kernel::activity::MailboxImpl; - simgrid::simix::Mailbox *pimpl_; + simgrid::kernel::activity::MailboxImpl* pimpl_; - Mailbox(smx_mailbox_t mbox): pimpl_(mbox) {} + explicit Mailbox(kernel::activity::MailboxImpl * mbox) : pimpl_(mbox) {} /** private function to manage the mailboxes' lifetime (see @ref s4u_raii) */ friend void intrusive_ptr_add_ref(Mailbox*) {} @@ -118,10 +118,10 @@ XBT_PUBLIC_CLASS Mailbox { friend void intrusive_ptr_release(Mailbox*) {} public: /** private function, do not use. FIXME: make me protected */ - smx_mailbox_t getImpl() { return pimpl_; } + kernel::activity::MailboxImpl* getImpl() { return pimpl_; } /** Gets the name of that mailbox */ - const char *getName(); + const char *name(); /** Retrieve the mailbox associated to the given C string */ static MailboxPtr byName(const char *name); @@ -132,6 +132,9 @@ public: /** Returns whether the mailbox contains queued communications */ bool empty(); + /** Check if there is a communication going on in a mailbox. */ + bool listen(); + /** Gets the first element in the queue (without dequeuing it), or nullptr if none is there */ smx_activity_t front();