Logo AND Algorithmique Numérique Distribuée

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