Logo AND Algorithmique Numérique Distribuée

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