Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
model-checker : don't call exit at the end of MC (segfault on atexit)
authorMarion Guthmuller <marion.guthmuller@loria.fr>
Fri, 19 Oct 2012 12:42:13 +0000 (14:42 +0200)
committerMarion Guthmuller <marion.guthmuller@loria.fr>
Sat, 27 Oct 2012 20:35:40 +0000 (22:35 +0200)
src/mc/mc_global.c

index 0692a23..28a5c4e 100644 (file)
@@ -229,8 +229,7 @@ void MC_modelcheck_liveness(){
   /* We're done */
   MC_print_statistics_pairs(mc_stats_pair);
   xbt_free(mc_time);
-  MC_memory_exit();
-  exit(0);
+
 }