Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
c9a39e053c70af514deb32fab48693e687b8fc30
[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 #include <xbt/utility.hpp>
17
18 #include "simgrid/s4u/Engine.hpp"
19 #include "simgrid/s4u/Host.hpp"
20
21 #include "smx_private.hpp"
22 #include "src/surf/surf_interface.hpp"
23 #include "src/surf/xml/platf.hpp"
24 #include "xbt/ex.h" /* ex_backtrace_display */
25
26 #include "mc/mc.h"
27 #include "simgrid/sg_config.h"
28 #include "src/mc/mc_replay.hpp"
29 #include "src/surf/StorageImpl.hpp"
30
31 #include "src/smpi/include/smpi_process.hpp"
32
33 #include "src/kernel/activity/CommImpl.hpp"
34 #include "src/kernel/activity/ExecImpl.hpp"
35 #include "src/kernel/activity/SleepImpl.hpp"
36 #include "src/kernel/activity/SynchroIo.hpp"
37 #include "src/kernel/activity/SynchroRaw.hpp"
38
39 #if SIMGRID_HAVE_MC
40 #include "src/mc/mc_private.hpp"
41 #include "src/mc/remote/Client.hpp"
42 #include "src/mc/remote/mc_protocol.h"
43 #endif
44
45 #include "src/mc/mc_record.hpp"
46
47 #if HAVE_SMPI
48 #include "src/smpi/include/private.hpp"
49 #endif
50
51 XBT_LOG_NEW_CATEGORY(simix, "All SIMIX categories");
52 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(simix_kernel, simix, "Logging specific to SIMIX (kernel)");
53
54 std::unique_ptr<simgrid::simix::Global> simix_global;
55
56 namespace {
57 typedef std::pair<double, smx_timer_t> TimerQelt;
58 boost::heap::fibonacci_heap<TimerQelt, boost::heap::compare<simgrid::xbt::HeapComparator<TimerQelt>>> simix_timers;
59 }
60
61 /** @brief Timer datatype */
62 class s_smx_timer_t {
63   double date = 0.0;
64
65 public:
66   decltype(simix_timers)::handle_type handle_;
67   simgrid::xbt::Task<void()> callback;
68   double getDate() { return date; }
69   s_smx_timer_t(double date, simgrid::xbt::Task<void()> callback) : date(date), callback(std::move(callback)) {}
70 };
71
72 void (*SMPI_switch_data_segment)(int) = nullptr;
73
74 int _sg_do_verbose_exit = 1;
75 static void inthandler(int)
76 {
77   if ( _sg_do_verbose_exit ) {
78      XBT_INFO("CTRL-C pressed. The current status will be displayed before exit (disable that behavior with option 'verbose-exit').");
79      SIMIX_display_process_status();
80   }
81   else {
82      XBT_INFO("CTRL-C pressed, exiting. Hiding the current process status since 'verbose-exit' is set to false.");
83   }
84   exit(1);
85 }
86
87 #ifndef _WIN32
88 static void segvhandler(int signum, siginfo_t* siginfo, void* /*context*/)
89 {
90   if (siginfo->si_signo == SIGSEGV && siginfo->si_code == SEGV_ACCERR) {
91     fprintf(stderr, "Access violation detected.\n"
92                     "This probably comes from a programming error in your code, or from a stack\n"
93                     "overflow. If you are certain of your code, try increasing the stack size\n"
94                     "   --cfg=contexts/stack-size=XXX (current size is %u KiB).\n"
95                     "\n"
96                     "If it does not help, this may have one of the following causes:\n"
97                     "a bug in SimGrid, a bug in the OS or a bug in a third-party libraries.\n"
98                     "Failing hardware can sometimes generate such errors too.\n"
99                     "\n"
100                     "If you think you've found a bug in SimGrid, please report it along with a\n"
101                     "Minimal Working Example (MWE) reproducing your problem and a full backtrace\n"
102                     "of the fault captured with gdb or valgrind.\n",
103             smx_context_stack_size / 1024);
104   } else  if (siginfo->si_signo == SIGSEGV) {
105     fprintf(stderr, "Segmentation fault.\n");
106 #if HAVE_SMPI
107     if (smpi_enabled() && smpi_privatize_global_variables == SMPI_PRIVATIZE_NONE) {
108 #if HAVE_PRIVATIZATION
109       fprintf(stderr, "Try to enable SMPI variable privatization with --cfg=smpi/privatization:yes.\n");
110 #else
111       fprintf(stderr, "Sadly, your system does not support --cfg=smpi/privatization:yes (yet).\n");
112 #endif /* HAVE_PRIVATIZATION */
113     }
114 #endif /* HAVE_SMPI */
115   }
116   raise(signum);
117 }
118
119 char sigsegv_stack[SIGSTKSZ];   /* alternate stack for SIGSEGV handler */
120
121 /**
122  * Install signal handler for SIGSEGV.  Check that nobody has already installed
123  * its own handler.  For example, the Java VM does this.
124  */
125 static void install_segvhandler()
126 {
127   stack_t stack;
128   stack_t old_stack;
129   stack.ss_sp = sigsegv_stack;
130   stack.ss_size = sizeof sigsegv_stack;
131   stack.ss_flags = 0;
132
133   if (sigaltstack(&stack, &old_stack) == -1) {
134     XBT_WARN("Failed to register alternate signal stack: %s", strerror(errno));
135     return;
136   }
137   if (not(old_stack.ss_flags & SS_DISABLE)) {
138     XBT_DEBUG("An alternate stack was already installed (sp=%p, size=%zu, flags=%x). Restore it.", old_stack.ss_sp,
139               old_stack.ss_size, (unsigned)old_stack.ss_flags);
140     sigaltstack(&old_stack, nullptr);
141   }
142
143   struct sigaction action;
144   struct sigaction old_action;
145   action.sa_sigaction = &segvhandler;
146   action.sa_flags = SA_ONSTACK | SA_RESETHAND | SA_SIGINFO;
147   sigemptyset(&action.sa_mask);
148
149   if (sigaction(SIGSEGV, &action, &old_action) == -1) {
150     XBT_WARN("Failed to register signal handler for SIGSEGV: %s", strerror(errno));
151     return;
152   }
153   if ((old_action.sa_flags & SA_SIGINFO) || old_action.sa_handler != SIG_DFL) {
154     XBT_DEBUG("A signal handler was already installed for SIGSEGV (%p). Restore it.",
155              (old_action.sa_flags & SA_SIGINFO) ? (void*)old_action.sa_sigaction : (void*)old_action.sa_handler);
156     sigaction(SIGSEGV, &old_action, nullptr);
157   }
158 }
159
160 #endif /* _WIN32 */
161
162 /********************************* SIMIX **************************************/
163 double SIMIX_timer_next()
164 {
165   return simix_timers.empty() ? -1.0 : simix_timers.top().first;
166 }
167
168 static void kill_process(smx_actor_t process)
169 {
170   SIMIX_process_kill(process, nullptr);
171 }
172
173 static std::function<void()> maestro_code;
174
175 namespace simgrid {
176 namespace simix {
177
178 simgrid::xbt::signal<void()> onDeadlock;
179
180 XBT_PUBLIC(void) set_maestro(std::function<void()> code)
181 {
182   maestro_code = std::move(code);
183 }
184
185 }
186 }
187
188 void SIMIX_set_maestro(void (*code)(void*), void* data)
189 {
190 #ifdef _WIN32
191   XBT_INFO("WARNING, SIMIX_set_maestro is believed to not work on windows. Please help us investigating this issue if you need that feature");
192 #endif
193   maestro_code = std::bind(code, data);
194 }
195
196 /**
197  * \ingroup SIMIX_API
198  * \brief Initialize SIMIX internal data.
199  *
200  * \param argc Argc
201  * \param argv Argv
202  */
203 void SIMIX_global_init(int *argc, char **argv)
204 {
205 #if SIMGRID_HAVE_MC
206   // The communication initialization is done ASAP.
207   // We need to communicate  initialization of the different layers to the model-checker.
208   simgrid::mc::Client::initialize();
209 #endif
210
211   if (not simix_global) {
212     simix_global = std::unique_ptr<simgrid::simix::Global>(new simgrid::simix::Global());
213
214     simgrid::simix::ActorImpl proc;
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   simix_global->process_to_destroy.clear();
303   simix_global->process_list.clear();
304
305   xbt_os_mutex_destroy(simix_global->mutex);
306   simix_global->mutex = nullptr;
307 #if SIMGRID_HAVE_MC
308   xbt_dynar_free(&simix_global->actors_vector);
309   xbt_dynar_free(&simix_global->dead_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
441        *   not impact its order.
442        *
443        *   Long proof: processes remain sorted through an arbitrary (implicit, complex but fixed) order in all cases.
444        *
445        *   - if there is no kill during the simulation, processes remain sorted according by their PID.
446        *     rational: This can be proved inductively.
447        *        Assume that process_to_run is sorted at a beginning of one round (it is at round 0: the deployment file
448        *        is parsed linearly).
449        *        Let's show that it is still so at the end of this round.
450        *        - if a process is added when being created, that's from maestro. It can be either at startup
451        *          time (and then in PID order), or in response to a process_create simcall. Since simcalls are handled
452        *          in arbitrary order (inductive hypothesis), we are fine.
453        *        - If a process is added because it's getting killed, its subsequent actions shouldn't matter
454        *        - If a process gets added to process_to_run because one of their blocking action constituting the meat
455        *          of a simcall terminates, we're still good. Proof:
456        *          - You are added from SIMIX_simcall_answer() only. When this function is called depends on the resource
457        *            kind (network, cpu, disk, whatever), but the same arguments hold. Let's take communications as an
458        *            example.
459        *          - For communications, this function is called from SIMIX_comm_finish().
460        *            This function itself don't mess with the order since simcalls are handled in FIFO order.
461        *            The function is called:
462        *            - before the comm starts (invalid parameters, or resource already dead or whatever).
463        *              The order then trivial holds since maestro didn't interrupt its handling of the simcall yet
464        *            - because the communication failed or were canceled after startup. In this case, it's called from
465        *              the function we are in, by the chunk:
466        *                       set = model->states.failed_action_set;
467        *                       while ((synchro = extract(set)))
468        *                          SIMIX_simcall_post((smx_synchro_t) synchro->data);
469        *              This order is also fixed because it depends of the order in which the surf actions were
470        *              added to the system, and only maestro can add stuff this way, through simcalls.
471        *              We thus use the inductive hypothesis once again to conclude that the order in which synchros are
472        *              poped out of the set does not depend on the user code's execution order.
473        *            - because the communication terminated. In this case, synchros are served in the order given by
474        *                       set = model->states.done_action_set;
475        *                       while ((synchro = extract(set)))
476        *                          SIMIX_simcall_post((smx_synchro_t) synchro->data);
477        *              and the argument is very similar to the previous one.
478        *            So, in any case, the orders of calls to SIMIX_comm_finish() do not depend on the order in which user
479        *            processes are executed.
480        *          So, in any cases, the orders of processes within process_to_run do not depend on the order in which
481        *          user processes were executed previously.
482        *     So, if there is no killing in the simulation, the simulation reproducibility is not jeopardized.
483        *   - If there is some process killings, the order is changed by this decision that comes from user-land
484        *     But this decision may not have been motivated by a situation that were different because the simulation is
485        *     not reproducible.
486        *     So, even the order change induced by the process killing is perfectly reproducible.
487        *
488        *   So science works, bitches [http://xkcd.com/54/].
489        *
490        *   We could sort the process_that_ran array completely so that we can describe the order in which simcalls are
491        *   handled (like "according to the PID of issuer"), but it's not mandatory (order is fixed already even if
492        *   unfriendly).
493        *   That would thus be a pure waste of time.
494        */
495
496       for (smx_actor_t const& process : simix_global->process_that_ran) {
497         if (process->simcall.call != SIMCALL_NONE) {
498           SIMIX_simcall_handle(&process->simcall, 0);
499         }
500       }
501
502       SIMIX_execute_tasks();
503       do {
504         SIMIX_wake_processes();
505       } while (SIMIX_execute_tasks());
506
507       /* If only daemon processes remain, cancel their actions, mark them to die and reschedule them */
508       if (simix_global->process_list.size() == simix_global->daemons.size())
509         for (auto const& dmon : simix_global->daemons) {
510           XBT_DEBUG("Kill %s", dmon->getCname());
511           SIMIX_process_kill(dmon, simix_global->maestro_process);
512         }
513     }
514
515     time = SIMIX_timer_next();
516     if (time > -1.0 || not simix_global->process_list.empty()) {
517       XBT_DEBUG("Calling surf_solve");
518       time = surf_solve(time);
519       XBT_DEBUG("Moving time ahead : %g", time);
520     }
521
522     /* Notify all the hosts that have failed */
523     /* FIXME: iterate through the list of failed host and mark each of them */
524     /* as failed. On each host, signal all the running processes with host_fail */
525
526     // Execute timers and tasks until there isn't anything to be done:
527     bool again = false;
528     do {
529       again = SIMIX_execute_timers();
530       if (SIMIX_execute_tasks())
531         again = true;
532       SIMIX_wake_processes();
533     } while (again);
534
535     /* Autorestart all process */
536     for (auto const& host : host_that_restart) {
537       XBT_INFO("Restart processes on host %s", host->getCname());
538       SIMIX_host_autorestart(host);
539     }
540     host_that_restart.clear();
541
542     /* Clean processes to destroy */
543     SIMIX_process_empty_trash();
544
545     XBT_DEBUG("### time %f, #processes %zu, #to_run %zu", time, simix_global->process_list.size(),
546               simix_global->process_to_run.size());
547
548     if (simix_global->process_to_run.empty() && not simix_global->process_list.empty())
549       simgrid::simix::onDeadlock();
550
551   } while (time > -1.0 || not simix_global->process_to_run.empty());
552
553   if (not simix_global->process_list.empty()) {
554
555     TRACE_end();
556
557     XBT_CRITICAL("Oops ! Deadlock or code not perfectly clean.");
558     SIMIX_display_process_status();
559     xbt_abort();
560   }
561   simgrid::s4u::onSimulationEnd();
562 }
563
564 /**
565  *   \brief Set the date to execute a function
566  *
567  * Set the date to execute the function on the surf.
568  *   \param date Date to execute function
569  *   \param callback Function to be executed
570  *   \param arg Parameters of the function
571  *
572  */
573 smx_timer_t SIMIX_timer_set(double date, void (*callback)(void*), void *arg)
574 {
575   smx_timer_t timer = new s_smx_timer_t(date, [callback, arg]() { callback(arg); });
576   timer->handle_    = simix_timers.emplace(std::make_pair(date, timer));
577   return timer;
578 }
579
580 smx_timer_t SIMIX_timer_set(double date, simgrid::xbt::Task<void()> callback)
581 {
582   smx_timer_t timer = new s_smx_timer_t(date, std::move(callback));
583   timer->handle_    = simix_timers.emplace(std::make_pair(date, timer));
584   return timer;
585 }
586
587 /** @brief cancels a timer that was added earlier */
588 void SIMIX_timer_remove(smx_timer_t timer) {
589   simix_timers.erase(timer->handle_);
590   delete timer;
591 }
592
593 /** @brief Returns the date at which the timer will trigger (or 0 if nullptr timer) */
594 double SIMIX_timer_get_date(smx_timer_t timer) {
595   return timer ? timer->getDate() : 0;
596 }
597
598 /**
599  * \brief Registers a function to create a process.
600  *
601  * This function registers a function to be called
602  * when a new process is created. The function has
603  * to call SIMIX_process_create().
604  * \param function create process function
605  */
606 void SIMIX_function_register_process_create(smx_creation_func_t function)
607 {
608   simix_global->create_process_function = function;
609 }
610
611 /**
612  * \brief Registers a function to kill a process.
613  *
614  * This function registers a function to be called when a process is killed. The function has to call the
615  * SIMIX_process_kill().
616  *
617  * \param function Kill process function
618  */
619 void SIMIX_function_register_process_kill(void_pfn_smxprocess_t function)
620 {
621   simix_global->kill_process_function = function;
622 }
623
624 /**
625  * \brief Registers a function to cleanup a process.
626  *
627  * This function registers a user function to be called when a process ends properly.
628  *
629  * \param function cleanup process function
630  */
631 void SIMIX_function_register_process_cleanup(void_pfn_smxprocess_t function)
632 {
633   simix_global->cleanup_process_function = function;
634 }
635
636
637 void SIMIX_display_process_status()
638 {
639   int nbprocess = simix_global->process_list.size();
640
641   XBT_INFO("%d processes are still running, waiting for something.", nbprocess);
642   /*  List the process and their state */
643   XBT_INFO("Legend of the following listing: \"Process <pid> (<name>@<host>): <status>\"");
644   for (auto const& kv : simix_global->process_list) {
645     smx_actor_t process = kv.second;
646
647     if (process->waiting_synchro) {
648
649       const char* synchro_description = "unknown";
650
651       if (boost::dynamic_pointer_cast<simgrid::kernel::activity::ExecImpl>(process->waiting_synchro) != nullptr)
652         synchro_description = "execution";
653
654       if (boost::dynamic_pointer_cast<simgrid::kernel::activity::CommImpl>(process->waiting_synchro) != nullptr)
655         synchro_description = "communication";
656
657       if (boost::dynamic_pointer_cast<simgrid::kernel::activity::SleepImpl>(process->waiting_synchro) != nullptr)
658         synchro_description = "sleeping";
659
660       if (boost::dynamic_pointer_cast<simgrid::kernel::activity::RawImpl>(process->waiting_synchro) != nullptr)
661         synchro_description = "synchronization";
662
663       if (boost::dynamic_pointer_cast<simgrid::kernel::activity::IoImpl>(process->waiting_synchro) != nullptr)
664         synchro_description = "I/O";
665
666       XBT_INFO("Process %lu (%s@%s): waiting for %s synchro %p (%s) in state %d to finish", process->pid,
667                process->getCname(), process->host->getCname(), synchro_description, process->waiting_synchro.get(),
668                process->waiting_synchro->name.c_str(), (int)process->waiting_synchro->state);
669     }
670     else {
671       XBT_INFO("Process %lu (%s@%s)", process->pid, process->getCname(), process->host->getCname());
672     }
673   }
674 }
675
676 int SIMIX_is_maestro()
677 {
678   smx_actor_t self = SIMIX_process_self();
679   return simix_global == nullptr /*SimDag*/ || self == nullptr || self == simix_global->maestro_process;
680 }