Logo AND Algorithmique Numérique Distribuée

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