Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Update copyright lines with new year.
[simgrid.git] / teshsuite / simix / stack-overflow / stack-overflow.cpp
index 427b866..d6c044f 100644 (file)
@@ -1,13 +1,15 @@
-/* stack_overflow -- simple program generating a stack overflow          */
+/* stack_overflow -- simple program generating a stack overflow             */
 
-/* Copyright (c) 2014-2018. The SimGrid Team.
- * All rights reserved.                                                     */
+/* Copyright (c) 2014-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. */
 
-#include "simgrid/simix.h"
+#include "simgrid/simix.hpp"
 #include "xbt/log.h"
+#include <simgrid/engine.h>
+
+#include <string>
 
 XBT_LOG_NEW_DEFAULT_CATEGORY(test, "my log messages");
 
@@ -26,7 +28,7 @@ static unsigned collatz(unsigned c0, unsigned n)
   return x;
 }
 
-static int master(int argc, char* argv[])
+static void master()
 {
   XBT_INFO("Launching our nice bugged recursive function...");
   unsigned i = 1;
@@ -35,7 +37,6 @@ static int master(int argc, char* argv[])
     unsigned res = collatz(i, i);
     XBT_VERB("collatz(%u, %u) returned %u", i, i, res);
   }
-  return 0;
 }
 
 int main(int argc, char* argv[])
@@ -44,9 +45,8 @@ int main(int argc, char* argv[])
 
   xbt_assert(argc == 2, "Usage: %s platform.xml\n", argv[0]);
 
-  SIMIX_function_register("master", master);
-  SIMIX_create_environment(argv[1]);
-  simcall_process_create(std::string("master"), master, NULL, sg_host_by_name("Tremblay"), 0, NULL, NULL);
+  simgrid_load_platform(argv[1]);
+  simcall_process_create("master", master, NULL, sg_host_by_name("Tremblay"), NULL);
   SIMIX_run();
 
   return 0;