Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge pull request #237 from oar-team/upstream
[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->process_to_destroy = xbt_swag_new(xbt_swag_offset(proc, destroy_hookup));
216     simix_global->maestro_process = nullptr;
217     simix_global->create_process_function = &SIMIX_process_create;
218     simix_global->kill_process_function = &kill_process;
219     simix_global->cleanup_process_function = &SIMIX_process_cleanup;
220     simix_global->mutex = xbt_os_mutex_init();
221
222     surf_init(argc, argv);      /* Initialize SURF structures */
223     SIMIX_context_mod_init();
224
225     // Either create a new context with maestro or create
226     // a context object with the current context mestro):
227     simgrid::simix::create_maestro(maestro_code);
228
229     /* Prepare to display some more info when dying on Ctrl-C pressing */
230     signal(SIGINT, inthandler);
231
232 #ifndef _WIN32
233     install_segvhandler();
234 #endif
235     /* register a function to be called by SURF after the environment creation */
236     sg_platf_init();
237     simgrid::s4u::onPlatformCreated.connect(SIMIX_post_create_environment);
238     simgrid::s4u::Host::onCreation.connect([](simgrid::s4u::Host& host) {
239       if (host.extension<simgrid::simix::Host>() == nullptr) // another callback to the same signal may have created it
240         host.extension_set<simgrid::simix::Host>(new simgrid::simix::Host());
241     });
242
243     simgrid::surf::storageCreatedCallbacks.connect([](simgrid::surf::StorageImpl* storage) {
244       sg_storage_t s = simgrid::s4u::Storage::byName(storage->getCname());
245       xbt_assert(s != nullptr, "Storage not found for name %s", storage->getCname());
246     });
247   }
248
249   if (xbt_cfg_get_boolean("clean-atexit"))
250     atexit(SIMIX_clean);
251
252   if (_sg_cfg_exit_asap)
253     exit(0);
254 }
255
256 int smx_cleaned = 0;
257 /**
258  * \ingroup SIMIX_API
259  * \brief Clean the SIMIX simulation
260  *
261  * This functions remove the memory used by SIMIX
262  */
263 void SIMIX_clean()
264 {
265   if (smx_cleaned)
266     return; // to avoid double cleaning by java and C
267
268   smx_cleaned = 1;
269   XBT_DEBUG("SIMIX_clean called. Simulation's over.");
270   if (not simix_global->process_to_run.empty() && SIMIX_get_clock() <= 0.0) {
271     XBT_CRITICAL("   ");
272     XBT_CRITICAL("The time is still 0, and you still have processes ready to run.");
273     XBT_CRITICAL("It seems that you forgot to run the simulation that you setup.");
274     xbt_die("Bailing out to avoid that stop-before-start madness. Please fix your code.");
275   }
276
277 #if HAVE_SMPI
278   if (SIMIX_process_count()>0){
279     if(smpi_process()->initialized()){
280       xbt_die("Process exited without calling MPI_Finalize - Killing simulation");
281     }else{
282       XBT_WARN("Process called exit when leaving - Skipping cleanups");
283       return;
284     }
285   }
286 #endif
287
288   /* Kill all processes (but maestro) */
289   SIMIX_process_killall(simix_global->maestro_process, 1);
290   SIMIX_context_runall();
291   SIMIX_process_empty_trash();
292
293   /* Exit the SIMIX network module */
294   SIMIX_mailbox_exit();
295
296   while (not simix_timers.empty()) {
297     delete simix_timers.top().second;
298     simix_timers.pop();
299   }
300   /* Free the remaining data structures */
301   simix_global->process_to_run.clear();
302   simix_global->process_that_ran.clear();
303   xbt_swag_free(simix_global->process_to_destroy);
304   simix_global->process_list.clear();
305   simix_global->process_to_destroy = nullptr;
306
307   xbt_os_mutex_destroy(simix_global->mutex);
308   simix_global->mutex = nullptr;
309 #if SIMGRID_HAVE_MC
310   xbt_dynar_free(&simix_global->actors_vector);
311 #endif
312
313   /* Let's free maestro now */
314   delete simix_global->maestro_process->context;
315   simix_global->maestro_process->context = nullptr;
316   delete simix_global->maestro_process;
317   simix_global->maestro_process = nullptr;
318
319   /* Finish context module and SURF */
320   SIMIX_context_mod_exit();
321
322   surf_exit();
323
324   simix_global = nullptr;
325 }
326
327
328 /**
329  * \ingroup SIMIX_API
330  * \brief A clock (in second).
331  *
332  * \return Return the clock.
333  */
334 double SIMIX_get_clock()
335 {
336   if(MC_is_active() || MC_record_replay_is_active()){
337     return MC_process_clock_get(SIMIX_process_self());
338   }else{
339     return surf_get_clock();
340   }
341 }
342
343 /** Wake up all processes waiting for a Surf action to finish */
344 static void SIMIX_wake_processes()
345 {
346   surf_action_t action;
347
348   for (auto const& model : *all_existing_models) {
349     XBT_DEBUG("Handling the processes whose action failed (if any)");
350     while ((action = surf_model_extract_failed_action_set(model))) {
351       XBT_DEBUG("   Handling Action %p",action);
352       SIMIX_simcall_exit(static_cast<simgrid::kernel::activity::ActivityImpl*>(action->getData()));
353     }
354     XBT_DEBUG("Handling the processes whose action terminated normally (if any)");
355     while ((action = surf_model_extract_done_action_set(model))) {
356       XBT_DEBUG("   Handling Action %p",action);
357       if (action->getData() == nullptr)
358         XBT_DEBUG("probably vcpu's action %p, skip", action);
359       else
360         SIMIX_simcall_exit(static_cast<simgrid::kernel::activity::ActivityImpl*>(action->getData()));
361     }
362   }
363 }
364
365 /** Handle any pending timer */
366 static bool SIMIX_execute_timers()
367 {
368   bool result = false;
369   while (not simix_timers.empty() && SIMIX_get_clock() >= simix_timers.top().first) {
370     result = true;
371     // FIXME: make the timers being real callbacks
372     // (i.e. provide dispatchers that read and expand the args)
373     smx_timer_t timer = simix_timers.top().second;
374     simix_timers.pop();
375     try {
376       timer->callback();
377     } catch (...) {
378       xbt_die("Exception thrown ouf of timer callback");
379     }
380     delete timer;
381   }
382   return result;
383 }
384
385 /** Execute all the tasks that are queued
386  *
387  *  e.g. `.then()` callbacks of futures.
388  **/
389 static bool SIMIX_execute_tasks()
390 {
391   xbt_assert(simix_global->tasksTemp.empty());
392
393   if (simix_global->tasks.empty())
394     return false;
395
396   using std::swap;
397   do {
398     // We don't want the callbacks to modify the vector we are iterating over:
399     swap(simix_global->tasks, simix_global->tasksTemp);
400
401     // Execute all the queued tasks:
402     for (auto& task : simix_global->tasksTemp)
403       task();
404
405     simix_global->tasksTemp.clear();
406   } while (not simix_global->tasks.empty());
407
408   return true;
409 }
410
411 /**
412  * \ingroup SIMIX_API
413  * \brief Run the main simulation loop.
414  */
415 void SIMIX_run()
416 {
417   if (not MC_record_path.empty()) {
418     simgrid::mc::replay(MC_record_path);
419     return;
420   }
421
422   double time = 0;
423
424   do {
425     XBT_DEBUG("New Schedule Round; size(queue)=%zu", simix_global->process_to_run.size());
426
427     SIMIX_execute_tasks();
428
429     while (not simix_global->process_to_run.empty()) {
430       XBT_DEBUG("New Sub-Schedule Round; size(queue)=%zu", simix_global->process_to_run.size());
431
432       /* Run all processes that are ready to run, possibly in parallel */
433       SIMIX_process_runall();
434
435       /* answer sequentially and in a fixed arbitrary order all the simcalls that were issued during that sub-round */
436
437       /* WARNING, the order *must* be fixed or you'll jeopardize the simulation reproducibility (see RR-7653) */
438
439       /* Here, the order is ok because:
440        *
441        *   Short proof: only maestro adds stuff to the process_to_run array, so the execution order of user contexts do 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 is parsed linearly).
448        *        Let's show that it is still so at the end of this round.
449        *        - if a process is added when being created, that's from maestro. It can be either at startup
450        *          time (and then in PID order), or in response to a process_create simcall. Since simcalls are handled
451        *          in arbitrary order (inductive hypothesis), we are fine.
452        *        - If a process is added because it's getting killed, its subsequent actions shouldn't matter
453        *        - If a process gets added to process_to_run because one of their blocking action constituting the meat
454        *          of a simcall terminates, we're still good. Proof:
455        *          - You are added from SIMIX_simcall_answer() only. When this function is called depends on the resource
456        *            kind (network, cpu, disk, whatever), but the same arguments hold. Let's take communications as an example.
457        *          - For communications, this function is called from SIMIX_comm_finish().
458        *            This function itself don't mess with the order since simcalls are handled in FIFO order.
459        *            The function is called:
460        *            - before the comm starts (invalid parameters, or resource already dead or whatever).
461        *              The order then trivial holds since maestro didn't interrupt its handling of the simcall yet
462        *            - because the communication failed or were canceled after startup. In this case, it's called from the function
463        *              we are in, by the chunk:
464        *                       set = model->states.failed_action_set;
465        *                       while ((synchro = xbt_swag_extract(set)))
466        *                          SIMIX_simcall_post((smx_synchro_t) synchro->data);
467        *              This order is also fixed because it depends of the order in which the surf actions were
468        *              added to the system, and only maestro can add stuff this way, through simcalls.
469        *              We thus use the inductive hypothesis once again to conclude that the order in which synchros are
470        *              poped out of the swag does not depend on the user code's execution order.
471        *            - because the communication terminated. In this case, synchros are served in the order given by
472        *                       set = model->states.done_action_set;
473        *                       while ((synchro = xbt_swag_extract(set)))
474        *                          SIMIX_simcall_post((smx_synchro_t) synchro->data);
475        *              and the argument is very similar to the previous one.
476        *            So, in any case, the orders of calls to SIMIX_comm_finish() do not depend on the order in which user processes are executed.
477        *          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.
478        *     So, if there is no killing in the simulation, the simulation reproducibility is not jeopardized.
479        *   - If there is some process killings, the order is changed by this decision that comes from user-land
480        *     But this decision may not have been motivated by a situation that were different because the simulation is not reproducible.
481        *     So, even the order change induced by the process killing is perfectly reproducible.
482        *
483        *   So science works, bitches [http://xkcd.com/54/].
484        *
485        *   We could sort the process_that_ran array completely so that we can describe the order in which simcalls are handled
486        *   (like "according to the PID of issuer"), but it's not mandatory (order is fixed already even if unfriendly).
487        *   That would thus be a pure waste of time.
488        */
489
490       for (smx_actor_t const& process : simix_global->process_that_ran) {
491         if (process->simcall.call != SIMCALL_NONE) {
492           SIMIX_simcall_handle(&process->simcall, 0);
493         }
494       }
495
496       SIMIX_execute_tasks();
497       do {
498         SIMIX_wake_processes();
499       } while (SIMIX_execute_tasks());
500
501       /* If only daemon processes remain, cancel their actions, mark them to die and reschedule them */
502       if (simix_global->process_list.size() == simix_global->daemons.size())
503         for (auto const& dmon : simix_global->daemons) {
504           XBT_DEBUG("Kill %s", dmon->getCname());
505           SIMIX_process_kill(dmon, simix_global->maestro_process);
506         }
507     }
508
509     time = SIMIX_timer_next();
510     if (time > -1.0 || not simix_global->process_list.empty()) {
511       XBT_DEBUG("Calling surf_solve");
512       time = surf_solve(time);
513       XBT_DEBUG("Moving time ahead : %g", time);
514     }
515
516     /* Notify all the hosts that have failed */
517     /* FIXME: iterate through the list of failed host and mark each of them */
518     /* as failed. On each host, signal all the running processes with host_fail */
519
520     // Execute timers and tasks until there isn't anything to be done:
521     bool again = false;
522     do {
523       again = SIMIX_execute_timers();
524       if (SIMIX_execute_tasks())
525         again = true;
526       SIMIX_wake_processes();
527     } while (again);
528
529     /* Autorestart all process */
530     for (auto const& host : host_that_restart) {
531       XBT_INFO("Restart processes on host %s", host->getCname());
532       SIMIX_host_autorestart(host);
533     }
534     host_that_restart.clear();
535
536     /* Clean processes to destroy */
537     SIMIX_process_empty_trash();
538
539     XBT_DEBUG("### time %f, #processes %zu, #to_run %zu", time, simix_global->process_list.size(),
540               simix_global->process_to_run.size());
541
542     if (simix_global->process_to_run.empty() && not simix_global->process_list.empty())
543       simgrid::simix::onDeadlock();
544
545   } while (time > -1.0 || not simix_global->process_to_run.empty());
546
547   if (not simix_global->process_list.empty()) {
548
549     TRACE_end();
550
551     XBT_CRITICAL("Oops ! Deadlock or code not perfectly clean.");
552     SIMIX_display_process_status();
553     xbt_abort();
554   }
555   simgrid::s4u::onSimulationEnd();
556 }
557
558 /**
559  *   \brief Set the date to execute a function
560  *
561  * Set the date to execute the function on the surf.
562  *   \param date Date to execute function
563  *   \param callback Function to be executed
564  *   \param arg Parameters of the function
565  *
566  */
567 smx_timer_t SIMIX_timer_set(double date, void (*callback)(void*), void *arg)
568 {
569   smx_timer_t timer = new s_smx_timer_t(date, [callback, arg]() { callback(arg); });
570   timer->handle_    = simix_timers.emplace(std::make_pair(date, timer));
571   return timer;
572 }
573
574 smx_timer_t SIMIX_timer_set(double date, simgrid::xbt::Task<void()> callback)
575 {
576   smx_timer_t timer = new s_smx_timer_t(date, std::move(callback));
577   timer->handle_    = simix_timers.emplace(std::make_pair(date, timer));
578   return timer;
579 }
580
581 /** @brief cancels a timer that was added earlier */
582 void SIMIX_timer_remove(smx_timer_t timer) {
583   simix_timers.erase(timer->handle_);
584   delete timer;
585 }
586
587 /** @brief Returns the date at which the timer will trigger (or 0 if nullptr timer) */
588 double SIMIX_timer_get_date(smx_timer_t timer) {
589   return timer ? timer->getDate() : 0;
590 }
591
592 /**
593  * \brief Registers a function to create a process.
594  *
595  * This function registers a function to be called
596  * when a new process is created. The function has
597  * to call SIMIX_process_create().
598  * \param function create process function
599  */
600 void SIMIX_function_register_process_create(smx_creation_func_t function)
601 {
602   simix_global->create_process_function = function;
603 }
604
605 /**
606  * \brief Registers a function to kill a process.
607  *
608  * This function registers a function to be called when a process is killed. The function has to call the
609  * SIMIX_process_kill().
610  *
611  * \param function Kill process function
612  */
613 void SIMIX_function_register_process_kill(void_pfn_smxprocess_t function)
614 {
615   simix_global->kill_process_function = function;
616 }
617
618 /**
619  * \brief Registers a function to cleanup a process.
620  *
621  * This function registers a user function to be called when a process ends properly.
622  *
623  * \param function cleanup process function
624  */
625 void SIMIX_function_register_process_cleanup(void_pfn_smxprocess_t function)
626 {
627   simix_global->cleanup_process_function = function;
628 }
629
630
631 void SIMIX_display_process_status()
632 {
633   int nbprocess = simix_global->process_list.size();
634
635   XBT_INFO("%d processes are still running, waiting for something.", nbprocess);
636   /*  List the process and their state */
637   XBT_INFO("Legend of the following listing: \"Process <pid> (<name>@<host>): <status>\"");
638   for (auto const& kv : simix_global->process_list) {
639     smx_actor_t process = kv.second;
640
641     if (process->waiting_synchro) {
642
643       const char* synchro_description = "unknown";
644
645       if (boost::dynamic_pointer_cast<simgrid::kernel::activity::ExecImpl>(process->waiting_synchro) != nullptr)
646         synchro_description = "execution";
647
648       if (boost::dynamic_pointer_cast<simgrid::kernel::activity::CommImpl>(process->waiting_synchro) != nullptr)
649         synchro_description = "communication";
650
651       if (boost::dynamic_pointer_cast<simgrid::kernel::activity::SleepImpl>(process->waiting_synchro) != nullptr)
652         synchro_description = "sleeping";
653
654       if (boost::dynamic_pointer_cast<simgrid::kernel::activity::RawImpl>(process->waiting_synchro) != nullptr)
655         synchro_description = "synchronization";
656
657       if (boost::dynamic_pointer_cast<simgrid::kernel::activity::IoImpl>(process->waiting_synchro) != nullptr)
658         synchro_description = "I/O";
659
660       XBT_INFO("Process %lu (%s@%s): waiting for %s synchro %p (%s) in state %d to finish", process->pid,
661                process->getCname(), process->host->getCname(), synchro_description, process->waiting_synchro.get(),
662                process->waiting_synchro->name.c_str(), (int)process->waiting_synchro->state);
663     }
664     else {
665       XBT_INFO("Process %lu (%s@%s)", process->pid, process->getCname(), process->host->getCname());
666     }
667   }
668 }
669
670 int SIMIX_is_maestro()
671 {
672   smx_actor_t self = SIMIX_process_self();
673   return simix_global == nullptr /*SimDag*/ || self == nullptr || self == simix_global->maestro_process;
674 }