Merge branch 'fix-aarch64' into 'master'

Fix aarch64

See merge request redox-os/kernel!217
This commit is contained in:
Jeremy Soller
2023-06-07 13:42:02 +00:00
+2 -2
View File
@@ -13,7 +13,7 @@ pub unsafe fn debugger(target_id: Option<crate::context::ContextId>) {
for (id, context_lock) in crate::context::contexts().iter() {
if target_id.map_or(false, |target_id| *id != target_id) { continue; }
let context = context_lock.read();
println!("{}: {}", (*id).into(), context.name.read());
println!("{}: {}", (*id).into(), context.name);
println!("status: {:?}", context.status);
if ! context.status_reason.is_empty() {
@@ -88,7 +88,7 @@ pub unsafe fn debugger(target_id: Option<crate::context::ContextId>) {
for (id, context_lock) in crate::context::contexts().iter() {
if target_id.map_or(false, |target_id| *id != target_id) { continue; }
let context = context_lock.read();
println!("{}: {}", (*id).into(), context.name.read());
println!("{}: {}", (*id).into(), context.name);
// Switch to context page table to ensure syscall debug and stack dump will work
if let Some(ref space) = context.addr_space {