Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
8c56b32b66024ae3c1467ddb48267b1fa14fc878
[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.h"
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 int master(int argc, char* argv[])
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   return 0;
41 }
42
43 int main(int argc, char* argv[])
44 {
45   SIMIX_global_init(&argc, argv);
46
47   xbt_assert(argc == 2, "Usage: %s platform.xml\n", argv[0]);
48
49   simgrid_register_function("master", master);
50   simgrid_load_platform(argv[1]);
51   simcall_process_create("master", master, NULL, sg_host_by_name("Tremblay"), 0, NULL, NULL);
52   SIMIX_run();
53
54   return 0;
55 }