Logo AND Algorithmique Numérique Distribuée

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