Преглед изворни кода

Fix regression introduced in 5fcf9206

I by mistake commented _dl_debug_state() function which would break
debugging
oddcoder пре 4 година
родитељ
комит
aaf017d9d1
1 измењених фајлова са 1 додато и 1 уклоњено
  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)
     }
 }