Logo AND Algorithmique Numérique Distribuée

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