Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
rename simix::Mailbox to simix::MailboxImpl for sake of consistency
[simgrid.git] / src / simix / smx_network.cpp
index 409a20d..22003ec 100644 (file)
@@ -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<smx_mailbox_t>(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);
   }
@@ -764,8 +764,8 @@ void SIMIX_comm_copy_buffer_callback(smx_activity_t synchro, void* buff, size_t
 
 
 /**
- *  \brief Copy the communication data from the sender's buffer to the receiver's one
- *  \param comm The communication
+ *  @brief Copy the communication data from the sender's buffer to the receiver's one
+ *  @param synchro The communication
  */
 void SIMIX_comm_copy_data(smx_activity_t synchro)
 {