Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
model-checker : use xbt_abort after exhaustive exploration
[simgrid.git] / src / mc / mc_global.c
index b1eb80b..5ebe09e 100644 (file)
@@ -198,6 +198,9 @@ void MC_init(){
   MC_ignore_stack("_throw_ctx", "*");
   MC_ignore_stack("ctx", "*");
 
+  MC_ignore_stack("next_context", "smx_ctx_sysv_suspend_serial");
+  MC_ignore_stack("i", "smx_ctx_sysv_suspend_serial");
+
   if(raw_mem_set)
     MC_SET_RAW_MEM;
 
@@ -287,6 +290,7 @@ void MC_exit(void)
 {
   xbt_free(mc_time);
   MC_memory_exit();
+  xbt_abort();
 }