Logo AND Algorithmique Numérique Distribuée

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