Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Use boost::heap for simix timers too, and allow proper erasure on timer removal.
[simgrid.git] / src / simix / smx_global.cpp
1 /* Copyright (c) 2007-2017. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #include <boost/heap/fibonacci_heap.hpp>
7 #include <functional>
8 #include <memory>
9
10 #include "src/internal_config.h"
11 #include <csignal> /* Signal handling */
12 #include <cstdlib>
13
14 #include <xbt/algorithm.hpp>
15 #include <xbt/functional.hpp>
16
17 #include "simgrid/s4u/Engine.hpp"
18 #include "simgrid/s4u/Host.hpp"
19
20 #include "smx_private.hpp"
21 #include "src/surf/surf_interface.hpp"
22 #include "src/surf/xml/platf.hpp"
23 #include "xbt/ex.h" /* ex_backtrace_display */
24
25 #include "mc/mc.h"
26 #include "simgrid/sg_config.h"
27 #include "src/mc/mc_replay.hpp"
28 #include "src/surf/StorageImpl.hpp"
29
30 #include "src/smpi/include/smpi_process.hpp"
31
32 #include "src/kernel/activity/CommImpl.hpp"
33 #include "src/kernel/activity/ExecImpl.hpp"
34 #include "src/kernel/activity/SleepImpl.hpp"
35 #include "src/kernel/activity/SynchroIo.hpp"
36 #include "src/kernel/activity/SynchroRaw.hpp"
37
38 #if SIMGRID_HAVE_MC
39 #include "src/mc/mc_private.hpp"
40 #include "src/mc/remote/Client.hpp"
41 #include "src/mc/remote/mc_protocol.h"
42 #endif
43
44 #include "src/mc/mc_record.hpp"
45
46 #if HAVE_SMPI
47 #include "src/smpi/include/private.hpp"
48 #endif
49
50 XBT_LOG_NEW_CATEGORY(simix, "All SIMIX categories");
51 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(simix_kernel, simix, "Logging specific to SIMIX (kernel)");
52
53 std::unique_ptr<simgrid::simix::Global> simix_global;
54
55 namespace {
56 typedef std::pair<double, smx_timer_t> TimerQelt;
57 boost::heap::fibonacci_heap<TimerQelt, boost::heap::compare<simgrid::xbt::HeapComparator<TimerQelt>>> simix_timers;
58 }
59
60 /** @brief Timer datatype */
61 class s_smx_timer_t {
62   double date = 0.0;
63
64 public:
65   decltype(simix_timers)::handle_type handle_;
66   simgrid::xbt::Task<void()> callback;
67   double getDate() { return date; }
68   s_smx_timer_t(double date, simgrid::xbt::Task<void()> callback) : date(date), callback(std::move(callback)) {}
69 };
70
71 void (*SMPI_switch_data_segment)(int) = nullptr;
72
73 int _sg_do_verbose_exit = 1;
74 static void inthandler(int)
75 {
76   if ( _sg_do_verbose_exit ) {
77      XBT_INFO("CTRL-C pressed. The current status will be displayed before exit (disable that behavior with option 'verbose-exit').");
78      SIMIX_display_process_status();
79   }
80   else {
81      XBT_INFO("CTRL-C pressed, exiting. Hiding the current process status since 'verbose-exit' is set to false.");
82   }
83   exit(1);
84 }
85
86 #ifndef _WIN32
87 static void segvhandler(int signum, siginfo_t* siginfo, void* /*context*/)
88 {
89   if (siginfo->si_signo == SIGSEGV && siginfo->si_code == SEGV_ACCERR) {
90     fprintf(stderr, "Access violation detected.\n"
91                     "This probably comes from a programming error in your code, or from a stack\n"
92                     "overflow. If you are certain of your code, try increasing the stack size\n"
93                     "   --cfg=contexts/stack-size=XXX (current size is %u KiB).\n"
94                     "\n"
95                     "If it does not help, this may have one of the following causes:\n"
96                     "a bug in SimGrid, a bug in the OS or a bug in a third-party libraries.\n"
97                     "Failing hardware can sometimes generate such errors too.\n"
98                     "\n"
99                     "If you think you've found a bug in SimGrid, please report it along with a\n"
100                     "Minimal Working Example (MWE) reproducing your problem and a full backtrace\n"
101                     "of the fault captured with gdb or valgrind.\n",
102             smx_context_stack_size / 1024);
103   } else  if (siginfo->si_signo == SIGSEGV) {
104     fprintf(stderr, "Segmentation fault.\n");
105 #if HAVE_SMPI
106     if (smpi_enabled() && smpi_privatize_global_variables == SMPI_PRIVATIZE_NONE) {
107 #if HAVE_PRIVATIZATION
108       fprintf(stderr, "Try to enable SMPI variable privatization with --cfg=smpi/privatization:yes.\n");
109 #else
110       fprintf(stderr, "Sadly, your system does not support --cfg=smpi/privatization:yes (yet).\n");
111 #endif /* HAVE_PRIVATIZATION */
112     }
113 #endif /* HAVE_SMPI */
114   }
115   raise(signum);
116 }
117
118 char sigsegv_stack[SIGSTKSZ];   /* alternate stack for SIGSEGV handler */
119
120 /**
121  * Install signal handler for SIGSEGV.  Check that nobody has already installed
122  * its own handler.  For example, the Java VM does this.
123  */
124 static void install_segvhandler()
125 {
126   stack_t stack;
127   stack_t old_stack;
128   stack.ss_sp = sigsegv_stack;
129   stack.ss_size = sizeof sigsegv_stack;
130   stack.ss_flags = 0;
131
132   if (sigaltstack(&stack, &old_stack) == -1) {
133     XBT_WARN("Failed to register alternate signal stack: %s", strerror(errno));
134     return;
135   }
136   if (not(old_stack.ss_flags & SS_DISABLE)) {
137     XBT_DEBUG("An alternate stack was already installed (sp=%p, size=%zu, flags=%x). Restore it.", old_stack.ss_sp,
138               old_stack.ss_size, (unsigned)old_stack.ss_flags);
139     sigaltstack(&old_stack, nullptr);
140   }
141
142   struct sigaction action;
143   struct sigaction old_action;
144   action.sa_sigaction = &segvhandler;
145   action.sa_flags = SA_ONSTACK | SA_RESETHAND | SA_SIGINFO;
146   sigemptyset(&action.sa_mask);
147
148   if (sigaction(SIGSEGV, &action, &old_action) == -1) {
149     XBT_WARN("Failed to register signal handler for SIGSEGV: %s", strerror(errno));
150     return;
151   }
152   if ((old_action.sa_flags & SA_SIGINFO) || old_action.sa_handler != SIG_DFL) {
153     XBT_DEBUG("A signal handler was already installed for SIGSEGV (%p). Restore it.",
154              (old_action.sa_flags & SA_SIGINFO) ? (void*)old_action.sa_sigaction : (void*)old_action.sa_handler);
155     sigaction(SIGSEGV, &old_action, nullptr);
156   }
157 }
158
159 #endif /* _WIN32 */
160
161 /********************************* SIMIX **************************************/
162 double SIMIX_timer_next()
163 {
164   return simix_timers.empty() ? -1.0 : simix_timers.top().first;
165 }
166
167 static void kill_process(smx_actor_t process)
168 {
169   SIMIX_process_kill(process, nullptr);
170 }
171
172 static std::function<void()> maestro_code;
173
174 namespace simgrid {
175 namespace simix {
176
177 simgrid::xbt::signal<void()> onDeadlock;
178
179 XBT_PUBLIC(void) set_maestro(std::function<void()> code)
180 {
181   maestro_code = std::move(code);
182 }
183
184 }
185 }
186
187 void SIMIX_set_maestro(void (*code)(void*), void* data)
188 {
189 #ifdef _WIN32
190   XBT_INFO("WARNING, SIMIX_set_maestro is believed to not work on windows. Please help us investigating this issue if you need that feature");
191 #endif
192   maestro_code = std::bind(code, data);
193 }
194
195 /**
196  * \ingroup SIMIX_API
197  * \brief Initialize SIMIX internal data.
198  *
199  * \param argc Argc
200  * \param argv Argv
201  */
202 void SIMIX_global_init(int *argc, char **argv)
203 {
204 #if SIMGRID_HAVE_MC
205   // The communication initialization is done ASAP.
206   // We need to communicate  initialization of the different layers to the model-checker.
207   simgrid::mc::Client::initialize();
208 #endif
209
210   if (not simix_global) {
211     simix_global = std::unique_ptr<simgrid::simix::Global>(new simgrid::simix::Global());
212
213     simgrid::simix::ActorImpl proc;
214     simix_global->process_to_destroy = xbt_swag_new(xbt_swag_offset(proc, destroy_hookup));
215     simix_global->maestro_process = nullptr;
216     simix_global->create_process_function = &SIMIX_process_create;
217     simix_global->kill_process_function = &kill_process;
218     simix_global->cleanup_process_function = &SIMIX_process_cleanup;
219     simix_global->mutex = xbt_os_mutex_init();
220
221     surf_init(argc, argv);      /* Initialize SURF structures */
222     SIMIX_context_mod_init();
223
224     // Either create a new context with maestro or create
225     // a context object with the current context mestro):
226     simgrid::simix::create_maestro(maestro_code);
227
228     /* Prepare to display some more info when dying on Ctrl-C pressing */
229     signal(SIGINT, inthandler);
230
231 #ifndef _WIN32
232     install_segvhandler();
233 #endif
234     /* register a function to be called by SURF after the environment creation */
235     sg_platf_init();
236     simgrid::s4u::onPlatformCreated.connect(SIMIX_post_create_environment);
237     simgrid::s4u::Host::onCreation.connect([](simgrid::s4u::Host& host) {
238       if (host.extension<simgrid::simix::Host>() == nullptr) // another callback to the same signal may have created it
239         host.extension_set<simgrid::simix::Host>(new simgrid::simix::Host());
240     });
241
242     simgrid::surf::storageCreatedCallbacks.connect([](simgrid::surf::StorageImpl* storage) {
243       sg_storage_t s = simgrid::s4u::Storage::byName(storage->getCname());
244       xbt_assert(s != nullptr, "Storage not found for name %s", storage->getCname());
245     });
246   }
247
248   if (xbt_cfg_get_boolean("clean-atexit"))
249     atexit(SIMIX_clean);
250
251   if (_sg_cfg_exit_asap)
252     exit(0);
253 }
254
255 int smx_cleaned = 0;
256 /**
257  * \ingroup SIMIX_API
258  * \brief Clean the SIMIX simulation
259  *
260  * This functions remove the memory used by SIMIX
261  */
262 void SIMIX_clean()
263 {
264   if (smx_cleaned)
265     return; // to avoid double cleaning by java and C
266
267   smx_cleaned = 1;
268   XBT_DEBUG("SIMIX_clean called. Simulation's over.");
269   if (not simix_global->process_to_run.empty() && SIMIX_get_clock() <= 0.0) {
270     XBT_CRITICAL("   ");
271     XBT_CRITICAL("The time is still 0, and you still have processes ready to run.");
272     XBT_CRITICAL("It seems that you forgot to run the simulation that you setup.");
273     xbt_die("Bailing out to avoid that stop-before-start madness. Please fix your code.");
274   }
275
276 #if HAVE_SMPI
277   if (SIMIX_process_count()>0){
278     if(smpi_process()->initialized()){
279       xbt_die("Process exited without calling MPI_Finalize - Killing simulation");
280     }else{
281       XBT_WARN("Process called exit when leaving - Skipping cleanups");
282       return;
283     }
284   }
285 #endif
286
287   /* Kill all processes (but maestro) */
288   SIMIX_process_killall(simix_global->maestro_process, 1);
289   SIMIX_context_runall();
290   SIMIX_process_empty_trash();
291
292   /* Exit the SIMIX network module */
293   SIMIX_mailbox_exit();
294
295   while (not simix_timers.empty()) {
296     delete simix_timers.top().second;
297     simix_timers.pop();
298   }
299   /* Free the remaining data structures */
300   simix_global->process_to_run.clear();
301   simix_global->process_that_ran.clear();
302   xbt_swag_free(simix_global->process_to_destroy);
303   simix_global->process_list.clear();
304   simix_global->process_to_destroy = nullptr;
305
306   xbt_os_mutex_destroy(simix_global->mutex);
307   simix_global->mutex = nullptr;
308 #if SIMGRID_HAVE_MC
309   xbt_dynar_free(&simix_global->actors_vector);
310 #endif
311
312   /* Let's free maestro now */
313   delete simix_global->maestro_process->context;
314   simix_global->maestro_process->context = nullptr;
315   delete simix_global->maestro_process;
316   simix_global->maestro_process = nullptr;
317
318   /* Finish context module and SURF */
319   SIMIX_context_mod_exit();
320
321   surf_exit();
322
323   simix_global = nullptr;
324 }
325
326
327 /**
328  * \ingroup SIMIX_API
329  * \brief A clock (in second).
330  *
331  * \return Return the clock.
332  */
333 double SIMIX_get_clock()
334 {
335   if(MC_is_active() || MC_record_replay_is_active()){
336     return MC_process_clock_get(SIMIX_process_self());
337   }else{
338     return surf_get_clock();
339   }
340 }
341
342 /** Wake up all processes waiting for a Surf action to finish */
343 static void SIMIX_wake_processes()
344 {
345   surf_action_t action;
346
347   for (auto const& model : *all_existing_models) {
348     XBT_DEBUG("Handling the processes whose action failed (if any)");
349     while ((action = surf_model_extract_failed_action_set(model))) {
350       XBT_DEBUG("   Handling Action %p",action);
351       SIMIX_simcall_exit(static_cast<simgrid::kernel::activity::ActivityImpl*>(action->getData()));
352     }
353     XBT_DEBUG("Handling the processes whose action terminated normally (if any)");
354     while ((action = surf_model_extract_done_action_set(model))) {
355       XBT_DEBUG("   Handling Action %p",action);
356       if (action->getData() == nullptr)
357         XBT_DEBUG("probably vcpu's action %p, skip", action);
358       else
359         SIMIX_simcall_exit(static_cast<simgrid::kernel::activity::ActivityImpl*>(action->getData()));
360     }
361   }
362 }
363
364 /** Handle any pending timer */
365 static bool SIMIX_execute_timers()
366 {
367   bool result = false;
368   while (not simix_timers.empty() && SIMIX_get_clock() >= simix_timers.top().first) {
369     result = true;
370     // FIXME: make the timers being real callbacks
371     // (i.e. provide dispatchers that read and expand the args)
372     smx_timer_t timer = simix_timers.top().second;
373     simix_timers.pop();
374     try {
375       timer->callback();
376     } catch (...) {
377       xbt_die("Exception thrown ouf of timer callback");
378     }
379     delete timer;
380   }
381   return result;
382 }
383
384 /** Execute all the tasks that are queued
385  *
386  *  e.g. `.then()` callbacks of futures.
387  **/
388 static bool SIMIX_execute_tasks()
389 {
390   xbt_assert(simix_global->tasksTemp.empty());
391
392   if (simix_global->tasks.empty())
393     return false;
394
395   using std::swap;
396   do {
397     // We don't want the callbacks to modify the vector we are iterating over:
398     swap(simix_global->tasks, simix_global->tasksTemp);
399
400     // Execute all the queued tasks:
401     for (auto& task : simix_global->tasksTemp)
402       task();
403
404     simix_global->tasksTemp.clear();
405   } while (not simix_global->tasks.empty());
406
407   return true;
408 }
409
410 /**
411  * \ingroup SIMIX_API
412  * \brief Run the main simulation loop.
413  */
414 void SIMIX_run()
415 {
416   if (not MC_record_path.empty()) {
417     simgrid::mc::replay(MC_record_path);
418     return;
419   }
420
421   double time = 0;
422
423   do {
424     XBT_DEBUG("New Schedule Round; size(queue)=%zu", simix_global->process_to_run.size());
425
426     SIMIX_execute_tasks();
427
428     while (not simix_global->process_to_run.empty()) {
429       XBT_DEBUG("New Sub-Schedule Round; size(queue)=%zu", simix_global->process_to_run.size());
430
431       /* Run all processes that are ready to run, possibly in parallel */
432       SIMIX_process_runall();
433
434       /* answer sequentially and in a fixed arbitrary order all the simcalls that were issued during that sub-round */
435
436       /* WARNING, the order *must* be fixed or you'll jeopardize the simulation reproducibility (see RR-7653) */
437
438       /* Here, the order is ok because:
439        *
440        *   Short proof: only maestro adds stuff to the process_to_run array, so the execution order of user contexts do not impact its order.
441        *
442        *   Long proof: processes remain sorted through an arbitrary (implicit, complex but fixed) order in all cases.
443        *
444        *   - if there is no kill during the simulation, processes remain sorted according by their PID.
445        *     rational: This can be proved inductively.
446        *        Assume that process_to_run is sorted at a beginning of one round (it is at round 0: the deployment file is parsed linearly).
447        *        Let's show that it is still so at the end of this round.
448        *        - if a process is added when being created, that's from maestro. It can be either at startup
449        *          time (and then in PID order), or in response to a process_create simcall. Since simcalls are handled
450        *          in arbitrary order (inductive hypothesis), we are fine.
451        *        - If a process is added because it's getting killed, its subsequent actions shouldn't matter
452        *        - If a process gets added to process_to_run because one of their blocking action constituting the meat
453        *          of a simcall terminates, we're still good. Proof:
454        *          - You are added from SIMIX_simcall_answer() only. When this function is called depends on the resource
455        *            kind (network, cpu, disk, whatever), but the same arguments hold. Let's take communications as an example.
456        *          - For communications, this function is called from SIMIX_comm_finish().
457        *            This function itself don't mess with the order since simcalls are handled in FIFO order.
458        *            The function is called:
459        *            - before the comm starts (invalid parameters, or resource already dead or whatever).
460        *              The order then trivial holds since maestro didn't interrupt its handling of the simcall yet
461        *            - because the communication failed or were canceled after startup. In this case, it's called from the function
462        *              we are in, by the chunk:
463        *                       set = model->states.failed_action_set;
464        *                       while ((synchro = xbt_swag_extract(set)))
465        *                          SIMIX_simcall_post((smx_synchro_t) synchro->data);
466        *              This order is also fixed because it depends of the order in which the surf actions were
467        *              added to the system, and only maestro can add stuff this way, through simcalls.
468        *              We thus use the inductive hypothesis once again to conclude that the order in which synchros are
469        *              poped out of the swag does not depend on the user code's execution order.
470        *            - because the communication terminated. In this case, synchros are served in the order given by
471        *                       set = model->states.done_action_set;
472        *                       while ((synchro = xbt_swag_extract(set)))
473        *                          SIMIX_simcall_post((smx_synchro_t) synchro->data);
474        *              and the argument is very similar to the previous one.
475        *            So, in any case, the orders of calls to SIMIX_comm_finish() do not depend on the order in which user processes are executed.
476        *          So, in any cases, the orders of processes within process_to_run do not depend on the order in which user processes were executed previously.
477        *     So, if there is no killing in the simulation, the simulation reproducibility is not jeopardized.
478        *   - If there is some process killings, the order is changed by this decision that comes from user-land
479        *     But this decision may not have been motivated by a situation that were different because the simulation is not reproducible.
480        *     So, even the order change induced by the process killing is perfectly reproducible.
481        *
482        *   So science works, bitches [http://xkcd.com/54/].
483        *
484        *   We could sort the process_that_ran array completely so that we can describe the order in which simcalls are handled
485        *   (like "according to the PID of issuer"), but it's not mandatory (order is fixed already even if unfriendly).
486        *   That would thus be a pure waste of time.
487        */
488
489       for (smx_actor_t const& process : simix_global->process_that_ran) {
490         if (process->simcall.call != SIMCALL_NONE) {
491           SIMIX_simcall_handle(&process->simcall, 0);
492         }
493       }
494
495       SIMIX_execute_tasks();
496       do {
497         SIMIX_wake_processes();
498       } while (SIMIX_execute_tasks());
499
500       /* If only daemon processes remain, cancel their actions, mark them to die and reschedule them */
501       if (simix_global->process_list.size() == simix_global->daemons.size())
502         for (auto const& dmon : simix_global->daemons) {
503           XBT_DEBUG("Kill %s", dmon->getCname());
504           SIMIX_process_kill(dmon, simix_global->maestro_process);
505         }
506     }
507
508     time = SIMIX_timer_next();
509     if (time > -1.0 || not simix_global->process_list.empty()) {
510       XBT_DEBUG("Calling surf_solve");
511       time = surf_solve(time);
512       XBT_DEBUG("Moving time ahead : %g", time);
513     }
514
515     /* Notify all the hosts that have failed */
516     /* FIXME: iterate through the list of failed host and mark each of them */
517     /* as failed. On each host, signal all the running processes with host_fail */
518
519     // Execute timers and tasks until there isn't anything to be done:
520     bool again = false;
521     do {
522       again = SIMIX_execute_timers();
523       if (SIMIX_execute_tasks())
524         again = true;
525       SIMIX_wake_processes();
526     } while (again);
527
528     /* Autorestart all process */
529     for (auto const& host : host_that_restart) {
530       XBT_INFO("Restart processes on host %s", host->getCname());
531       SIMIX_host_autorestart(host);
532     }
533     host_that_restart.clear();
534
535     /* Clean processes to destroy */
536     SIMIX_process_empty_trash();
537
538     XBT_DEBUG("### time %f, #processes %zu, #to_run %zu", time, simix_global->process_list.size(),
539               simix_global->process_to_run.size());
540
541     if (simix_global->process_to_run.empty() && not simix_global->process_list.empty())
542       simgrid::simix::onDeadlock();
543
544   } while (time > -1.0 || not simix_global->process_to_run.empty());
545
546   if (not simix_global->process_list.empty()) {
547
548     TRACE_end();
549
550     XBT_CRITICAL("Oops ! Deadlock or code not perfectly clean.");
551     SIMIX_display_process_status();
552     xbt_abort();
553   }
554   simgrid::s4u::onSimulationEnd();
555 }
556
557 /**
558  *   \brief Set the date to execute a function
559  *
560  * Set the date to execute the function on the surf.
561  *   \param date Date to execute function
562  *   \param callback Function to be executed
563  *   \param arg Parameters of the function
564  *
565  */
566 smx_timer_t SIMIX_timer_set(double date, void (*callback)(void*), void *arg)
567 {
568   smx_timer_t timer = new s_smx_timer_t(date, [callback, arg]() { callback(arg); });
569   timer->handle_    = simix_timers.emplace(std::make_pair(date, timer));
570   return timer;
571 }
572
573 smx_timer_t SIMIX_timer_set(double date, simgrid::xbt::Task<void()> callback)
574 {
575   smx_timer_t timer = new s_smx_timer_t(date, std::move(callback));
576   timer->handle_    = simix_timers.emplace(std::make_pair(date, timer));
577   return timer;
578 }
579
580 /** @brief cancels a timer that was added earlier */
581 void SIMIX_timer_remove(smx_timer_t timer) {
582   simix_timers.erase(timer->handle_);
583   delete timer;
584 }
585
586 /** @brief Returns the date at which the timer will trigger (or 0 if nullptr timer) */
587 double SIMIX_timer_get_date(smx_timer_t timer) {
588   return timer ? timer->getDate() : 0;
589 }
590
591 /**
592  * \brief Registers a function to create a process.
593  *
594  * This function registers a function to be called
595  * when a new process is created. The function has
596  * to call SIMIX_process_create().
597  * \param function create process function
598  */
599 void SIMIX_function_register_process_create(smx_creation_func_t function)
600 {
601   simix_global->create_process_function = function;
602 }
603
604 /**
605  * \brief Registers a function to kill a process.
606  *
607  * This function registers a function to be called when a process is killed. The function has to call the
608  * SIMIX_process_kill().
609  *
610  * \param function Kill process function
611  */
612 void SIMIX_function_register_process_kill(void_pfn_smxprocess_t function)
613 {
614   simix_global->kill_process_function = function;
615 }
616
617 /**
618  * \brief Registers a function to cleanup a process.
619  *
620  * This function registers a user function to be called when a process ends properly.
621  *
622  * \param function cleanup process function
623  */
624 void SIMIX_function_register_process_cleanup(void_pfn_smxprocess_t function)
625 {
626   simix_global->cleanup_process_function = function;
627 }
628
629
630 void SIMIX_display_process_status()
631 {
632   int nbprocess = simix_global->process_list.size();
633
634   XBT_INFO("%d processes are still running, waiting for something.", nbprocess);
635   /*  List the process and their state */
636   XBT_INFO("Legend of the following listing: \"Process <pid> (<name>@<host>): <status>\"");
637   for (auto const& kv : simix_global->process_list) {
638     smx_actor_t process = kv.second;
639
640     if (process->waiting_synchro) {
641
642       const char* synchro_description = "unknown";
643
644       if (boost::dynamic_pointer_cast<simgrid::kernel::activity::ExecImpl>(process->waiting_synchro) != nullptr)
645         synchro_description = "execution";
646
647       if (boost::dynamic_pointer_cast<simgrid::kernel::activity::CommImpl>(process->waiting_synchro) != nullptr)
648         synchro_description = "communication";
649
650       if (boost::dynamic_pointer_cast<simgrid::kernel::activity::SleepImpl>(process->waiting_synchro) != nullptr)
651         synchro_description = "sleeping";
652
653       if (boost::dynamic_pointer_cast<simgrid::kernel::activity::RawImpl>(process->waiting_synchro) != nullptr)
654         synchro_description = "synchronization";
655
656       if (boost::dynamic_pointer_cast<simgrid::kernel::activity::IoImpl>(process->waiting_synchro) != nullptr)
657         synchro_description = "I/O";
658
659       XBT_INFO("Process %lu (%s@%s): waiting for %s synchro %p (%s) in state %d to finish", process->pid,
660                process->getCname(), process->host->getCname(), synchro_description, process->waiting_synchro.get(),
661                process->waiting_synchro->name.c_str(), (int)process->waiting_synchro->state);
662     }
663     else {
664       XBT_INFO("Process %lu (%s@%s)", process->pid, process->getCname(), process->host->getCname());
665     }
666   }
667 }
668
669 int SIMIX_is_maestro()
670 {
671   smx_actor_t self = SIMIX_process_self();
672   return simix_global == nullptr /*SimDag*/ || self == nullptr || self == simix_global->maestro_process;
673 }