Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
model-checker : remove meta-data of heap in comparison algorithm
authorMarion Guthmuller <marion.guthmuller@loria.fr>
Fri, 27 Apr 2012 14:43:29 +0000 (16:43 +0200)
committerMarion Guthmuller <marion.guthmuller@loria.fr>
Fri, 27 Apr 2012 14:43:29 +0000 (16:43 +0200)
src/xbt/mmalloc/mm_diff.c

index 1fdc5bd..96df860 100644 (file)
@@ -128,7 +128,7 @@ int mmalloc_compare_mdesc(struct mdesc *mdp1, struct mdesc *mdp2){
 
   int errors = 0;
 
 
   int errors = 0;
 
-  if(mdp1->headersize != mdp2->headersize){
+  /*if(mdp1->headersize != mdp2->headersize){
     fprintf(stderr, "Different size of the file header for the mapped files\n");
     return 1;
   }
     fprintf(stderr, "Different size of the file header for the mapped files\n");
     return 1;
   }
@@ -191,7 +191,7 @@ int mmalloc_compare_mdesc(struct mdesc *mdp1, struct mdesc *mdp2){
   if(mdp1->version != mdp2->version){
     fprintf(stderr,"Different version of the mmalloc package\n");
     return 1;
   if(mdp1->version != mdp2->version){
     fprintf(stderr,"Different version of the mmalloc package\n");
     return 1;
-  }
+    }*/
 
 
   size_t i, j;
 
 
   size_t i, j;