Logo AND Algorithmique Numérique Distribuée

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