Reach init again, with proc mgr.

This commit is contained in:
4lDO2
2024-12-27 13:54:47 +01:00
parent a9fb2dcb93
commit ce77a018ec
5 changed files with 56 additions and 45 deletions
+2 -10
View File
@@ -226,11 +226,7 @@ pub fn debug_start([a, b, c, d, e, f]: [usize; 6]) {
let context_lock = crate::context::current();
{
let context = context_lock.read();
print!(
"{} (*{}*): ",
context.name,
context.debug_id,
);
print!("{} (*{}*): ", context.name, context.debug_id,);
}
// Do format_call outside print! so possible exception handlers cannot reentrantly
@@ -266,11 +262,7 @@ pub fn debug_end([a, b, c, d, e, f]: [usize; 6], result: Result<usize>) {
let context_lock = crate::context::current();
{
let context = context_lock.read();
print!(
"{} (*{}*): ",
context.name,
context.debug_id,
);
print!("{} (*{}*): ", context.name, context.debug_id,);
}
// Do format_call outside print! so possible exception handlers cannot reentrantly