Logo AND Algorithmique Numérique Distribuée

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