X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/8c416e92254512408c1d0ce729e8d3cf82ec9938..679d19d0fbf85bddd5731b134475672eeb36db0d:/examples/s4u/dht-kademlia/s4u-dht-kademlia.cpp diff --git a/examples/s4u/dht-kademlia/s4u-dht-kademlia.cpp b/examples/s4u/dht-kademlia/s4u-dht-kademlia.cpp index edf9c5c280..c6c8fc1bf4 100644 --- a/examples/s4u/dht-kademlia/s4u-dht-kademlia.cpp +++ b/examples/s4u/dht-kademlia/s4u-dht-kademlia.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2012-2018. The SimGrid Team. +/* Copyright (c) 2012-2019. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -40,13 +40,13 @@ static int node(int argc, char* argv[]) if (join_success) { XBT_VERB("Ok, I'm joining the network with id %u", node->getId()); // We start the main loop - double next_lookup_time = simgrid::s4u::Engine::getClock() + random_lookup_interval; + double next_lookup_time = simgrid::s4u::Engine::get_clock() + RANDOM_LOOKUP_INTERVAL; XBT_VERB("Main loop start"); - simgrid::s4u::MailboxPtr mailbox = simgrid::s4u::Mailbox::byName(std::to_string(node->getId())); + simgrid::s4u::Mailbox* mailbox = simgrid::s4u::Mailbox::by_name(std::to_string(node->getId())); - while (simgrid::s4u::Engine::getClock() < deadline) { + while (simgrid::s4u::Engine::get_clock() < deadline) { if (node->receive_comm == nullptr) node->receive_comm = mailbox->get_async(&node->received_msg); @@ -62,9 +62,9 @@ static int node(int argc, char* argv[]) simgrid::s4u::this_actor::sleep_for(1); } else { /* We search for a pseudo random node */ - if (simgrid::s4u::Engine::getClock() >= next_lookup_time) { + if (simgrid::s4u::Engine::get_clock() >= next_lookup_time) { node->randomLookup(); - next_lookup_time += random_lookup_interval; + next_lookup_time += RANDOM_LOOKUP_INTERVAL; } else { // Didn't get a message: sleep for a while... simgrid::s4u::this_actor::sleep_for(1); @@ -87,7 +87,8 @@ int main(int argc, char* argv[]) simgrid::s4u::Engine e(&argc, argv); /* Check the arguments */ - xbt_assert(argc > 2, "Usage: %s platform_file deployment_file\n\tExample: %s cluster.xml dht-kademlia_d.xml\n", + xbt_assert(argc > 2, + "Usage: %s platform_file deployment_file\n\tExample: %s cluster_backbone.xml dht-kademlia_d.xml\n", argv[0], argv[0]); e.load_platform(argv[1]); @@ -96,7 +97,7 @@ int main(int argc, char* argv[]) e.run(); - XBT_INFO("Simulated time: %g", simgrid::s4u::Engine::getClock()); + XBT_INFO("Simulated time: %g", simgrid::s4u::Engine::get_clock()); return 0; }