Logo AND Algorithmique Numérique Distribuée

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