Logo AND Algorithmique Numérique Distribuée

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