Logo AND Algorithmique Numérique Distribuée

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