Logo AND Algorithmique Numérique Distribuée

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