Logo AND Algorithmique Numérique Distribuée

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