Logo AND Algorithmique Numérique Distribuée

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