Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
New cmake option "enable_mallocators", useful to disable mallocators.
[simgrid.git] / src / mc / mc_liveness.c
index eadd14909e329841523c5af78ef1301f0f0304c6..d11136815a1e0cccd436ae1cc2d9680629050eea 100644 (file)
@@ -27,7 +27,7 @@ int create_dump(int pair)
   switch(fork()){
   case 0:
     // We are the child process -- run the actual program
-    abort();
+    xbt_abort();
     break;
     
   case -1:
@@ -266,8 +266,9 @@ void MC_ddfs_init(void){
 
   MC_UNSET_RAW_MEM; 
 
-  /* Get .plt section (start and end addresses) for data libsimgrid comparison */
-  get_plt_section();
+  /* Get .plt section (start and end addresses) for data libsimgrid and data program comparison */
+  get_libsimgrid_plt_section();
+  get_binary_plt_section();
 
   unsigned int cursor = 0;
   xbt_state_t state;