Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
remove a useless call
[simgrid.git] / src / s4u / s4u_mailbox.cpp
index fe40a3f..c87c380 100644 (file)
@@ -28,7 +28,7 @@ MailboxPtr Mailbox::byName(const char*name) {
   // Only one simix object will be created, but two S4U objects will be created.
   // Only one S4U object will be stored in the hashmap and used, and the other
   // one will be leaked.
-  smx_mailbox_t mbox = simcall_mbox_get_by_name(name);
+  smx_mailbox_t mbox = SIMIX_mbox_get_by_name(name);
   if (mbox == nullptr)
     mbox = simcall_mbox_create(name);
   return MailboxPtr(&mbox->piface_, true);
@@ -62,6 +62,3 @@ int sg_mbox_is_empty(sg_mbox_t mbox) {
 void sg_mbox_setReceiver(sg_mbox_t mbox, smx_process_t process) {
   mbox->setReceiver(&process->actor());
 }
-smx_process_t sg_mbox_receiver(sg_mbox_t mbox) {
-  return mbox->receiver()->getImpl();
-}