Logo AND Algorithmique Numérique Distribuée

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