Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
remove a teshsuite example that is superseeded by a proper example
[simgrid.git] / examples / s4u / dht-chord / s4u_dht-chord.cpp
index 4105503..6bd3cc8 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2010-2016. The SimGrid Team. All rights reserved.          */
+/* Copyright (c) 2010-2017. 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. */
@@ -29,12 +29,12 @@ static void chord_init()
   HostChord::EXTENSION_ID = simgrid::s4u::Host::extension_create<HostChord>();
 
   std::vector<simgrid::s4u::Host*> list;
-  simgrid::s4u::Engine::instance()->hostList(&list);
-  for (auto host : list)
+  simgrid::s4u::Engine::getInstance()->getHostList(&list);
+  for (auto const& host : list)
     host->extension_set(new HostChord(host));
 }
 
-static void chord_exit(void)
+static void chord_exit()
 {
   delete[] powers2;
 }
@@ -46,14 +46,14 @@ int main(int argc, char* argv[])
                        "\tExample: %s ../msg_platform.xml chord.xml\n",
              argv[0], argv[0]);
   char** options = &argv[1];
-  while (!strncmp(options[0], "-", 1)) {
+  while (not strncmp(options[0], "-", 1)) {
     unsigned int length = strlen("-nb_bits=");
-    if (!strncmp(options[0], "-nb_bits=", length) && strlen(options[0]) > length) {
+    if (not strncmp(options[0], "-nb_bits=", length) && strlen(options[0]) > length) {
       nb_bits = xbt_str_parse_int(options[0] + length, "Invalid nb_bits parameter: %s");
       XBT_DEBUG("Set nb_bits to %d", nb_bits);
     } else {
       length = strlen("-timeout=");
-      if (!strncmp(options[0], "-timeout=", length) && strlen(options[0]) > length) {
+      if (not strncmp(options[0], "-timeout=", length) && strlen(options[0]) > length) {
         timeout = xbt_str_parse_int(options[0] + length, "Invalid timeout parameter: %s");
         XBT_DEBUG("Set timeout to %d", timeout);
       } else {
@@ -76,5 +76,6 @@ int main(int argc, char* argv[])
 
   chord_exit();
 
+  delete e;
   return 0;
 }