Logo AND Algorithmique Numérique Distribuée

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