Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
25882af65fadfbd7b627d54f8d9cf8c9997acd80
[simgrid.git] / src / simix / smx_global.c
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
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 "src/mc/mc_replay.h"
17 #include "simgrid/sg_config.h"
18
19 #ifdef HAVE_MC
20 #include "src/mc/mc_private.h"
21 #include "src/mc/mc_protocol.h"
22 #include "src/mc/mc_client.h"
23 #endif
24
25 #ifdef HAVE_MC
26 #include <stdlib.h>
27 #include "src/mc/mc_protocol.h"
28 #endif 
29
30 #include "src/mc/mc_record.h"
31
32 #ifdef 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,
38                                 "Logging specific to SIMIX (kernel)");
39
40 smx_global_t simix_global = NULL;
41 static xbt_heap_t simix_timers = NULL;
42
43 static void* SIMIX_synchro_mallocator_new_f(void);
44 static void SIMIX_synchro_mallocator_free_f(void* synchro);
45 static void SIMIX_synchro_mallocator_reset_f(void* synchro);
46
47 /* FIXME: Yeah, I'll do it in a portable maner one day [Mt] */
48 #include <signal.h>
49
50 int _sg_do_verbose_exit = 1;
51 static void _XBT_CALL inthandler(int ignored)
52 {
53   if ( _sg_do_verbose_exit ) {
54      XBT_INFO("CTRL-C pressed. The current status will be displayed before exit (disable that behavior with option 'verbose-exit').");
55      SIMIX_display_process_status();
56   }
57   else {
58      XBT_INFO("CTRL-C pressed, exiting. Hiding the current process status since 'verbose-exit' is set to false.");
59   }
60   exit(1);
61 }
62
63 #ifndef WIN32
64 static void _XBT_CALL segvhandler(int signum, siginfo_t *siginfo, void *context)
65 {
66   if (siginfo->si_signo == SIGSEGV && siginfo->si_code == SEGV_ACCERR) {
67     fprintf(stderr,
68             "Access violation detected.\n"
69             "This can result from a programming error in your code or, although less likely,\n"
70             "from a bug in SimGrid itself.  This can also be the sign of a bug in the OS or\n"
71             "in third-party libraries.  Failing hardware can sometimes generate such errors\n"
72             "too.\n"
73             "Finally, if nothing of the above applies, this can result from a stack overflow.\n"
74             "Try to increase stack size with --cfg=contexts/stack_size (current size is %d KiB).\n",
75             smx_context_stack_size / 1024);
76     if (XBT_LOG_ISENABLED(simix_kernel, xbt_log_priority_debug)) {
77       fprintf(stderr,
78               "siginfo = {si_signo = %d, si_errno = %d, si_code = %d, si_addr = %p}\n",
79               siginfo->si_signo, siginfo->si_errno, siginfo->si_code, siginfo->si_addr);
80     }
81   } else  if (siginfo->si_signo == SIGSEGV) {
82     fprintf(stderr, "Segmentation fault.\n");
83 #ifdef HAVE_SMPI
84     if (smpi_enabled() && !smpi_privatize_global_variables) {
85       fprintf(stderr,
86         "Try to enable SMPI variable privatization with --cfg=smpi/privatize_global_variables:yes.\n");
87     }
88 #endif
89   }
90 #ifdef HAVE_MC
91   if (MC_is_active()) {
92     if (mc_stack) {
93       MC_dump_stack_safety(mc_stack);
94     }
95     MC_print_statistics(mc_stats);
96   }
97 #endif
98   raise(signum);
99 }
100
101 char sigsegv_stack[SIGSTKSZ];   /* alternate stack for SIGSEGV handler */
102
103 /**
104  * Install signal handler for SIGSEGV.  Check that nobody has already installed
105  * its own handler.  For example, the Java VM does this.
106  */
107 static void install_segvhandler(void)
108 {
109   stack_t stack, old_stack;
110   stack.ss_sp = sigsegv_stack;
111   stack.ss_size = sizeof sigsegv_stack;
112   stack.ss_flags = 0;
113
114   if (sigaltstack(&stack, &old_stack) == -1) {
115     XBT_WARN("Failed to register alternate signal stack: %s",
116              strerror(errno));
117     return;
118   }
119   if (!(old_stack.ss_flags & SS_DISABLE)) {
120     XBT_DEBUG("An alternate stack was already installed (sp=%p, size=%zd, flags=%x). Restore it.",
121               old_stack.ss_sp, old_stack.ss_size, old_stack.ss_flags);
122     sigaltstack(&old_stack, NULL);
123   }
124
125   struct sigaction action, old_action;
126   action.sa_sigaction = segvhandler;
127   action.sa_flags = SA_ONSTACK | SA_RESETHAND | SA_SIGINFO;
128   sigemptyset(&action.sa_mask);
129
130   if (sigaction(SIGSEGV, &action, &old_action) == -1) {
131     XBT_WARN("Failed to register signal handler for SIGSEGV: %s",
132              strerror(errno));
133     return;
134   }
135   if ((old_action.sa_flags & SA_SIGINFO) || old_action.sa_handler != SIG_DFL) {
136     XBT_DEBUG("A signal handler was already installed for SIGSEGV (%p). Restore it.",
137              (old_action.sa_flags & SA_SIGINFO) ?
138              (void*)old_action.sa_sigaction : (void*)old_action.sa_handler);
139     sigaction(SIGSEGV, &old_action, NULL);
140   }
141 }
142
143 #endif
144 /********************************* SIMIX **************************************/
145
146 XBT_INLINE double SIMIX_timer_next(void)
147 {
148   return xbt_heap_size(simix_timers) > 0 ? xbt_heap_maxkey(simix_timers) : -1.0;
149 }
150
151 /**
152  * \ingroup SIMIX_API
153  * \brief Initialize SIMIX internal data.
154  *
155  * \param argc Argc
156  * \param argv Argv
157  */
158 void SIMIX_global_init(int *argc, char **argv)
159 {
160 #ifdef HAVE_MC
161   _sg_do_model_check = getenv(MC_ENV_VARIABLE) != NULL;
162 #endif
163
164   s_smx_process_t proc;
165
166   if (!simix_global) {
167     simix_global = xbt_new0(s_smx_global_t, 1);
168
169 #ifdef TIME_BENCH_AMDAHL
170     simix_global->timer_seq = xbt_os_timer_new();
171     simix_global->timer_par = xbt_os_timer_new();
172     xbt_os_cputimer_start(simix_global->timer_seq);
173 #endif
174     simix_global->process_to_run = xbt_dynar_new(sizeof(smx_process_t), NULL);
175     simix_global->process_that_ran = xbt_dynar_new(sizeof(smx_process_t), NULL);
176     simix_global->process_list =
177         xbt_swag_new(xbt_swag_offset(proc, process_hookup));
178     simix_global->process_to_destroy =
179         xbt_swag_new(xbt_swag_offset(proc, destroy_hookup));
180
181     simix_global->maestro_process = NULL;
182     simix_global->registered_functions = xbt_dict_new_homogeneous(NULL);
183
184     simix_global->create_process_function = SIMIX_process_create;
185     simix_global->kill_process_function = SIMIX_process_kill;
186     simix_global->cleanup_process_function = SIMIX_process_cleanup;
187     simix_global->synchro_mallocator = xbt_mallocator_new(65536,
188         SIMIX_synchro_mallocator_new_f, SIMIX_synchro_mallocator_free_f,
189         SIMIX_synchro_mallocator_reset_f);
190     simix_global->autorestart = SIMIX_host_restart_processes;
191     simix_global->mutex = xbt_os_mutex_init();
192
193     surf_init(argc, argv);      /* Initialize SURF structures */
194     SIMIX_context_mod_init();
195     SIMIX_create_maestro_process();
196
197     /* context exception handlers */
198     __xbt_running_ctx_fetch = SIMIX_process_get_running_context;
199     __xbt_ex_terminate = SIMIX_process_exception_terminate;
200
201     SIMIX_network_init();
202
203     /* Prepare to display some more info when dying on Ctrl-C pressing */
204     signal(SIGINT, inthandler);
205
206 #ifndef WIN32
207     /* Install SEGV handler */
208     install_segvhandler();
209 #endif
210     /* register a function to be called by SURF after the environment creation */
211     sg_platf_init();
212     sg_platf_postparse_add_cb(SIMIX_post_create_environment);
213
214   }
215   if (!simix_timers) {
216     simix_timers = xbt_heap_new(8, &free);
217   }
218
219   SIMIX_STORAGE_LEVEL = xbt_lib_add_level(storage_lib, SIMIX_storage_destroy);
220
221   if (sg_cfg_get_boolean("clean_atexit"))
222     atexit(SIMIX_clean);
223
224 #ifdef HAVE_MC
225   // The communication initialization is done ASAP.
226   // We need to communicate  initialization of the different layers to the model-checker.
227   if (mc_mode == MC_MODE_NONE) {
228     if (getenv(MC_ENV_SOCKET_FD)) {
229       mc_mode = MC_MODE_CLIENT;
230       MC_client_init();
231       MC_client_hello();
232       MC_client_handle_messages();
233     }
234   }
235 #endif
236
237   if (_sg_cfg_exit_asap)
238     exit(0);
239 }
240
241 int smx_cleaned = 0;
242 /**
243  * \ingroup SIMIX_API
244  * \brief Clean the SIMIX simulation
245  *
246  * This functions remove the memory used by SIMIX
247  */
248 void SIMIX_clean(void)
249 {
250 #ifdef TIME_BENCH_PER_SR
251   smx_ctx_raw_new_sr();
252 #endif
253   if (smx_cleaned) return; // to avoid double cleaning by java and C
254   smx_cleaned = 1;
255   XBT_DEBUG("SIMIX_clean called. Simulation's over.");
256   if (!xbt_dynar_is_empty(simix_global->process_to_run) && SIMIX_get_clock() == 0.0) {
257           XBT_CRITICAL("   ");
258           XBT_CRITICAL("The time is still 0, and you still have processes ready to run.");
259           XBT_CRITICAL("It seems that you forgot to run the simulation that you setup.");
260           xbt_die("Bailing out to avoid that stop-before-start madness. Please fix your code.");
261   }
262   /* Kill all processes (but maestro) */
263   SIMIX_process_killall(simix_global->maestro_process, 1);
264
265   /* Exit the SIMIX network module */
266   SIMIX_network_exit();
267
268   xbt_heap_free(simix_timers);
269   simix_timers = NULL;
270   /* Free the remaining data structures */
271   xbt_dynar_free(&simix_global->process_to_run);
272   xbt_dynar_free(&simix_global->process_that_ran);
273   xbt_swag_free(simix_global->process_to_destroy);
274   xbt_swag_free(simix_global->process_list);
275   simix_global->process_list = NULL;
276   simix_global->process_to_destroy = NULL;
277   xbt_dict_free(&(simix_global->registered_functions));
278
279   xbt_os_mutex_destroy(simix_global->mutex);
280   simix_global->mutex = NULL;
281
282   /* Let's free maestro now */
283   SIMIX_context_free(simix_global->maestro_process->context);
284   xbt_free(simix_global->maestro_process->running_ctx);
285   xbt_free(simix_global->maestro_process);
286   simix_global->maestro_process = NULL;
287
288   /* Restore the default exception setup */
289   __xbt_running_ctx_fetch = &__xbt_ex_ctx_default;
290   __xbt_ex_terminate = &__xbt_ex_terminate_default;
291
292   /* Finish context module and SURF */
293   SIMIX_context_mod_exit();
294
295   surf_exit();
296
297 #ifdef TIME_BENCH_AMDAHL
298   xbt_os_cputimer_stop(simix_global->timer_seq);
299   XBT_INFO("Amdahl timing informations. Sequential time: %f; Parallel time: %f",
300            xbt_os_timer_elapsed(simix_global->timer_seq),
301            xbt_os_timer_elapsed(simix_global->timer_par));
302   xbt_os_timer_free(simix_global->timer_seq);
303   xbt_os_timer_free(simix_global->timer_par);
304 #endif
305
306   xbt_mallocator_free(simix_global->synchro_mallocator);
307   xbt_free(simix_global);
308   simix_global = NULL;
309
310   return;
311 }
312
313
314 /**
315  * \ingroup SIMIX_API
316  * \brief A clock (in second).
317  *
318  * \return Return the clock.
319  */
320 XBT_INLINE double SIMIX_get_clock(void)
321 {
322   if(MC_is_active() || MC_record_replay_is_active()){
323     return MC_process_clock_get(SIMIX_process_self());
324   }else{
325     return surf_get_clock();
326   }
327 }
328
329 static int process_syscall_color(void *p)
330 {
331   switch ((*(smx_process_t *)p)->simcall.call) {
332   case SIMCALL_NONE:
333   case SIMCALL_PROCESS_KILL:
334     return 2;
335   case SIMCALL_PROCESS_RESUME:
336     return 1;
337   default:
338     return 0;
339   }
340 }
341
342 /**
343  * \ingroup SIMIX_API
344  * \brief Run the main simulation loop.
345  */
346 void SIMIX_run(void)
347 {
348   if(MC_record_path) {
349     MC_record_replay_init();
350     MC_record_replay_from_string(MC_record_path);
351     return;
352   }
353
354   double time = 0;
355   smx_process_t process;
356   surf_action_t action;
357   smx_timer_t timer;
358   surf_model_t model;
359   unsigned int iter;
360
361   do {
362     XBT_DEBUG("New Schedule Round; size(queue)=%lu",
363         xbt_dynar_length(simix_global->process_to_run));
364 #ifdef TIME_BENCH_PER_SR
365     smx_ctx_raw_new_sr();
366 #endif
367     while (!xbt_dynar_is_empty(simix_global->process_to_run)) {
368       XBT_DEBUG("New Sub-Schedule Round; size(queue)=%lu",
369               xbt_dynar_length(simix_global->process_to_run));
370
371       /* Run all processes that are ready to run, possibly in parallel */
372 #ifdef TIME_BENCH_AMDAHL
373       xbt_os_cputimer_stop(simix_global->timer_seq);
374       xbt_os_cputimer_resume(simix_global->timer_par);
375 #endif
376       SIMIX_process_runall();
377 #ifdef TIME_BENCH_AMDAHL
378       xbt_os_cputimer_stop(simix_global->timer_par);
379       xbt_os_cputimer_resume(simix_global->timer_seq);
380 #endif
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(model_list, 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) surf_action_get_data(action));
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 (surf_action_get_data(action) == NULL)
456             XBT_DEBUG("probably vcpu's action %p, skip", action);
457           else
458             SIMIX_simcall_exit((smx_synchro_t) surf_action_get_data(action));
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 = xbt_heap_pop(simix_timers);
478        if (timer->func)
479          ((void (*)(void*))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(model_list, 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) surf_action_get_data(action));
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 (surf_action_get_data(action) == NULL)
494           XBT_DEBUG("probably vcpu's action %p, skip", action);
495         else
496           SIMIX_simcall_exit((smx_synchro_t) surf_action_get_data(action));
497       }
498     }
499
500     /* Autorestart all process */
501     if(host_that_restart) {
502       char *hostname = NULL;
503       xbt_dynar_foreach(host_that_restart,iter,hostname) {
504         XBT_INFO("Restart processes on host: %s",hostname);
505         SIMIX_host_autorestart(sg_host_by_name(hostname));
506       }
507       xbt_dynar_reset(host_that_restart);
508     }
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 XBT_INLINE smx_timer_t SIMIX_timer_set(double date, void *function, void *arg)
538 {
539   smx_timer_t timer = xbt_new0(s_smx_timer_t, 1);
540
541   timer->date = date;
542   timer->func = function;
543   timer->args = arg;
544   xbt_heap_push(simix_timers, timer, date);
545   return timer;
546 }
547 /** @brief cancels a timer that was added earlier */
548 XBT_INLINE void SIMIX_timer_remove(smx_timer_t timer) {
549         xbt_heap_rm_elm(simix_timers, timer, timer->date);
550 }
551
552 /** @brief Returns the date at which the timer will trigger (or 0 if NULL timer) */
553 XBT_INLINE double SIMIX_timer_get_date(smx_timer_t timer) {
554         return timer?timer->date:0;
555 }
556
557 /**
558  * \brief Registers a function to create a process.
559  *
560  * This function registers a function to be called
561  * when a new process is created. The function has
562  * to call SIMIX_process_create().
563  * \param function create process function
564  */
565 XBT_INLINE void SIMIX_function_register_process_create(smx_creation_func_t
566                                                        function)
567 {
568   simix_global->create_process_function = function;
569 }
570
571 /**
572  * \brief Registers a function to kill a process.
573  *
574  * This function registers a function to be called when a
575  * process is killed. The function has to call the SIMIX_process_kill().
576  *
577  * \param function Kill process function
578  */
579 XBT_INLINE void SIMIX_function_register_process_kill(void_pfn_smxprocess_t_smxprocess_t
580                                                      function)
581 {
582   simix_global->kill_process_function = function;
583 }
584
585 /**
586  * \brief Registers a function to cleanup a process.
587  *
588  * This function registers a user function to be called when
589  * a process ends properly.
590  *
591  * \param function cleanup process function
592  */
593 XBT_INLINE void SIMIX_function_register_process_cleanup(void_pfn_smxprocess_t
594                                                         function)
595 {
596   simix_global->cleanup_process_function = function;
597 }
598
599
600 void SIMIX_display_process_status(void)
601 {
602   if (simix_global->process_list == NULL) {
603     return;
604   }
605
606   smx_process_t process = NULL;
607   int nbprocess = xbt_swag_size(simix_global->process_list);
608
609   XBT_INFO("%d processes are still running, waiting for something.", nbprocess);
610   /*  List the process and their state */
611   XBT_INFO
612     ("Legend of the following listing: \"Process <pid> (<name>@<host>): <status>\"");
613   xbt_swag_foreach(process, simix_global->process_list) {
614
615     if (process->waiting_synchro) {
616
617       const char* synchro_description = "unknown";
618       switch (process->waiting_synchro->type) {
619
620       case SIMIX_SYNC_EXECUTE:
621         synchro_description = "execution";
622         break;
623
624       case SIMIX_SYNC_PARALLEL_EXECUTE:
625         synchro_description = "parallel execution";
626         break;
627
628       case SIMIX_SYNC_COMMUNICATE:
629         synchro_description = "communication";
630         break;
631
632       case SIMIX_SYNC_SLEEP:
633         synchro_description = "sleeping";
634         break;
635
636       case SIMIX_SYNC_JOIN:
637         synchro_description = "joining";
638         break;
639
640       case SIMIX_SYNC_SYNCHRO:
641         synchro_description = "synchronization";
642         break;
643
644       case SIMIX_SYNC_IO:
645         synchro_description = "I/O";
646         break;
647       }
648       XBT_INFO("Process %lu (%s@%s): waiting for %s synchro %p (%s) in state %d to finish",
649           process->pid, process->name, sg_host_name(process->host),
650           synchro_description, process->waiting_synchro,
651           process->waiting_synchro->name, (int)process->waiting_synchro->state);
652     }
653     else {
654       XBT_INFO("Process %lu (%s@%s)", process->pid, process->name, sg_host_name(process->host));
655     }
656   }
657 }
658
659 static void* SIMIX_synchro_mallocator_new_f(void) {
660   smx_synchro_t synchro = xbt_new(s_smx_synchro_t, 1);
661   synchro->simcalls = xbt_fifo_new();
662   return synchro;
663 }
664
665 static void SIMIX_synchro_mallocator_free_f(void* synchro) {
666   xbt_fifo_free(((smx_synchro_t) synchro)->simcalls);
667   xbt_free(synchro);
668 }
669
670 static void SIMIX_synchro_mallocator_reset_f(void* synchro) {
671
672   // we also recycle the simcall list
673   xbt_fifo_t fifo = ((smx_synchro_t) synchro)->simcalls;
674   xbt_fifo_reset(fifo);
675   memset(synchro, 0, sizeof(s_smx_synchro_t));
676   ((smx_synchro_t) synchro)->simcalls = fifo;
677 }
678
679 xbt_dict_t simcall_HANDLER_asr_get_properties(smx_simcall_t simcall, const char *name){
680   return SIMIX_asr_get_properties(name);
681 }
682 xbt_dict_t SIMIX_asr_get_properties(const char *name)
683 {
684   return xbt_lib_get_or_null(as_router_lib, name, ROUTING_PROP_ASR_LEVEL);
685 }