Logo AND Algorithmique Numérique Distribuée

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