X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/2198c7606069815736661349b157268dc9dd21ae..84402e8e2ee2a2d0bef25fdceb0a263ed8b471f6:/teshsuite/simix/stack-overflow/stack-overflow.cpp diff --git a/teshsuite/simix/stack-overflow/stack-overflow.cpp b/teshsuite/simix/stack-overflow/stack-overflow.cpp index 94841add63..d2100f342a 100644 --- a/teshsuite/simix/stack-overflow/stack-overflow.cpp +++ b/teshsuite/simix/stack-overflow/stack-overflow.cpp @@ -1,12 +1,13 @@ /* stack_overflow -- simple program generating a stack overflow */ -/* Copyright (c) 2014-2018. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2014-2020. 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 #include @@ -27,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; @@ -36,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[]) @@ -45,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("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;