Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
remove the argc/argv version of simcall_process_create
[simgrid.git] / teshsuite / simix / stack-overflow / stack-overflow.cpp
1 /* stack_overflow -- simple program generating a stack overflow             */
2
3 /* Copyright (c) 2014-2018. The SimGrid Team. All rights reserved.          */
4
5 /* This program is free software; you can redistribute it and/or modify it
6  * under the terms of the license (GNU LGPL) which comes with this package. */
7
8 #include "simgrid/simix.hpp"
9 #include "xbt/log.h"
10 #include <simgrid/engine.h>
11
12 #include <string>
13
14 XBT_LOG_NEW_DEFAULT_CATEGORY(test, "my log messages");
15
16 static unsigned collatz(unsigned c0, unsigned n)
17 {
18   unsigned x;
19   if (n == 0) {
20     x = c0;
21   } else {
22     x = collatz(c0, n - 1);
23     if (x % 2 == 0)
24       x = x / 2;
25     else
26       x = 3 * x + 1;
27   }
28   return x;
29 }
30
31 static void master()
32 {
33   XBT_INFO("Launching our nice bugged recursive function...");
34   unsigned i = 1;
35   while (i <= 0x80000000U) {
36     i *= 2;
37     unsigned res = collatz(i, i);
38     XBT_VERB("collatz(%u, %u) returned %u", i, i, res);
39   }
40 }
41
42 int main(int argc, char* argv[])
43 {
44   SIMIX_global_init(&argc, argv);
45
46   xbt_assert(argc == 2, "Usage: %s platform.xml\n", argv[0]);
47
48   simgrid_load_platform(argv[1]);
49   simcall_process_create("master", master, NULL, sg_host_by_name("Tremblay"), NULL);
50   SIMIX_run();
51
52   return 0;
53 }