X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/63ebf4be4ca6a243a64c7ded8df9b96a9d28d3ff..b67343d6e9fc74fc159a51a48d0ea7d9a2374712:/teshsuite/s4u/comm-pt2pt/comm-pt2pt.cpp diff --git a/teshsuite/s4u/comm-pt2pt/comm-pt2pt.cpp b/teshsuite/s4u/comm-pt2pt/comm-pt2pt.cpp index f160b23200..bc625c957f 100644 --- a/teshsuite/s4u/comm-pt2pt/comm-pt2pt.cpp +++ b/teshsuite/s4u/comm-pt2pt/comm-pt2pt.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2010-2018. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2010-2019. 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. */ @@ -16,11 +16,9 @@ XBT_LOG_NEW_DEFAULT_CATEGORY(s4u_test, "Messages specific for this s4u example"); -using namespace simgrid::s4u; - static void usage(const char* binaryName, const char* defaultSend, const char* defaultRecv) { - std::fprintf(stderr, "Usage: %s examples/platforms/cluster.xml \n" + std::fprintf(stderr, "Usage: %s examples/platforms/cluster_backbone.xml \n" "where spec is a list of letters giving the kind of tests you want to see.\n" "Existing sender spec:\n" " r regular send\n" @@ -39,7 +37,7 @@ static void usage(const char* binaryName, const char* defaultSend, const char* d " j irecv on permanent mailbox (after a little delay)\n" " J irecv on permanent mailbox (after a little delay)\n" "\n" - "Example 1: %s examples/platforms/cluster.xml rRiIdD rrrrrr # testing all send functions\n" + "Example 1: %s examples/platforms/cluster_backbone.xml rRiIdD rrrrrr # testing all send functions\n" "Default specs: %s %s (all possible pairs)\n", binaryName, binaryName, defaultSend, defaultRecv); exit(1); @@ -49,9 +47,9 @@ static void sender(std::vector args) { XBT_INFO("Sender spec: %s", args[0].c_str()); for (unsigned int test = 1; test <= args[0].size(); test++) { - this_actor::sleep_until(test * 5 - 5); + simgrid::s4u::this_actor::sleep_until(test * 5 - 5); std::string* mboxName = new std::string("Test #" + std::to_string(test)); - simgrid::s4u::MailboxPtr mbox = simgrid::s4u::Mailbox::byName(mboxName->c_str()); + simgrid::s4u::MailboxPtr mbox = simgrid::s4u::Mailbox::by_name(*mboxName); switch (args[0][test - 1]) { case 'r': @@ -96,9 +94,9 @@ static void receiver(std::vector args) { XBT_INFO("Receiver spec: %s", args[0].c_str()); for (unsigned int test = 1; test <= args[0].size(); test++) { - this_actor::sleep_until(test * 5 - 5); + simgrid::s4u::this_actor::sleep_until(test * 5 - 5); std::string mboxName = "Test #" + std::to_string(test); - simgrid::s4u::MailboxPtr mbox = simgrid::s4u::Mailbox::byName(mboxName.c_str()); + simgrid::s4u::MailboxPtr mbox = simgrid::s4u::Mailbox::by_name(mboxName); void* received = nullptr; switch (args[0][test - 1]) { @@ -123,24 +121,24 @@ static void receiver(std::vector args) break; case 'p': XBT_INFO("Test %u: p (regular receive on permanent mailbox)", test); - mbox->setReceiver(Actor::self()); + mbox->set_receiver(simgrid::s4u::Actor::self()); received = mbox->get(); break; case 'P': XBT_INFO("Test %u: P (sleep + regular receive on permanent mailbox)", test); simgrid::s4u::this_actor::sleep_for(0.5); - mbox->setReceiver(Actor::self()); + mbox->set_receiver(simgrid::s4u::Actor::self()); received = mbox->get(); break; case 'j': XBT_INFO("Test %u: j (irecv on permanent mailbox)", test); - mbox->setReceiver(Actor::self()); + mbox->set_receiver(simgrid::s4u::Actor::self()); mbox->get_async(&received)->wait(); break; case 'J': XBT_INFO("Test %u: J (sleep + irecv on permanent mailbox)", test); simgrid::s4u::this_actor::sleep_for(0.5); - mbox->setReceiver(Actor::self()); + mbox->set_receiver(simgrid::s4u::Actor::self()); mbox->get_async(&received)->wait(); break; default: