]> AND Public Git Repository - simgrid.git/blobdiff - src/plugins/vm/VmLiveMigration.hpp
Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
python: Add Comm.wait() and Comm.test()
[simgrid.git] / src / plugins / vm / VmLiveMigration.hpp
index daff0fb38a029e8b04b2b35c006368b858195a61..fd84132184101846b9c77dde710f37ebab287370 100644 (file)
@@ -28,9 +28,9 @@ public:
 
 class MigrationRx {
   /* The miration_rx process uses mbox_ctl to let the caller of do_migration()  know the completion of the migration. */
-  s4u::MailboxPtr mbox_ctl;
+  s4u::Mailbox* mbox_ctl;
   /* The migration_rx and migration_tx processes use mbox to transfer migration data. */
-  s4u::MailboxPtr mbox;
+  s4u::Mailbox* mbox;
   s4u::VirtualMachine* vm_;
   s4u::Host* src_pm_ = nullptr;
   s4u::Host* dst_pm_ = nullptr;
@@ -50,7 +50,7 @@ public:
 
 class MigrationTx {
   /* The migration_rx and migration_tx processes use mbox to transfer migration data. */
-  s4u::MailboxPtr mbox;
+  s4u::Mailbox* mbox;
   s4u::VirtualMachine* vm_;
   s4u::Host* src_pm_ = nullptr;
   s4u::Host* dst_pm_ = nullptr;