Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[mc] Remove useless code (get SP register)
authorGabriel Corona <gabriel.corona@loria.fr>
Mon, 10 Feb 2014 10:13:37 +0000 (11:13 +0100)
committerGabriel Corona <gabriel.corona@loria.fr>
Mon, 10 Feb 2014 10:13:37 +0000 (11:13 +0100)
src/mc/mc_checkpoint.c

index 7e8d185..5f924c4 100644 (file)
@@ -404,7 +404,7 @@ static xbt_dynar_t MC_get_local_variables_values(void *stack_context){
     xbt_abort();
   }
 
     xbt_abort();
   }
 
-  unw_word_t ip, sp, off;
+  unw_word_t ip, off;
   dw_frame_t frame;
 
   unsigned int cursor = 0;
   dw_frame_t frame;
 
   unsigned int cursor = 0;
@@ -420,7 +420,6 @@ static xbt_dynar_t MC_get_local_variables_values(void *stack_context){
   while(ret >= 0 && !stop){
 
     unw_get_reg(&c, UNW_REG_IP, &ip);
   while(ret >= 0 && !stop){
 
     unw_get_reg(&c, UNW_REG_IP, &ip);
-    unw_get_reg(&c, UNW_REG_SP, &sp);
 
     unw_get_proc_name(&c, frame_name, sizeof (frame_name), &off);
 
 
     unw_get_proc_name(&c, frame_name, sizeof (frame_name), &off);