Logo AND Algorithmique Numérique Distribuée

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