]> AND Public Git Repository - simgrid.git/blobdiff - examples/s4u/app-token-ring/s4u-app-token-ring.cpp
Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[sonar] Regexps are overkill here.
[simgrid.git] / examples / s4u / app-token-ring / s4u-app-token-ring.cpp
index 3a2a02d4b947732d203c83164ccbeff5d8d03e69..27741143ccbf593289324b7740954baba647af28 100644 (file)
@@ -13,8 +13,8 @@ XBT_LOG_NEW_DEFAULT_CATEGORY(s4u_app_token_ring, "Messages specific for this s4u
 
 class RelayRunner {
   size_t task_comm_size = 1000000; /* The token is 1MB long*/
-  simgrid::s4u::MailboxPtr my_mailbox;
-  simgrid::s4u::MailboxPtr neighbor_mailbox;
+  simgrid::s4u::Mailbox* my_mailbox;
+  simgrid::s4u::Mailbox* neighbor_mailbox;
   unsigned int rank      = 0;
 
 public: