Explorar o código

Fix regression introduced in 5fcf9206

I by mistake commented _dl_debug_state() function which would break
debugging
oddcoder %!s(int64=4) %!d(string=hai) anos
pai
achega
aaf017d9d1
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      src/ld_so/linker.rs

+ 1 - 1
src/ld_so/linker.rs

@@ -898,7 +898,7 @@ impl Linker {
             }
         }
         unsafe { _r_debug.state = RTLDState::RT_CONSISTENT };
-        //_dl_debug_state();
+        _dl_debug_state();
         Ok(entry_opt)
     }
 }