Logo AND Algorithmique Numérique Distribuée

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