WIP: Track grant ownership.

This commit is contained in:
4lDO2
2023-06-20 20:06:34 +02:00
parent e7d94ddff5
commit 490e1b2777
9 changed files with 252 additions and 194 deletions
+3 -1
View File
@@ -187,7 +187,9 @@ pub unsafe fn debugger(target_id: Option<crate::context::ContextId>) {
println!(
" virt 0x{:016x}:0x{:016x} size 0x{:08x} {}",
base.start_address().data(), base.start_address().data() + size - 1, size,
if info.is_owned() { "owned" } else { "borrowed" },
//if info.is_owned() { "owned" } else { "borrowed" },
// TODO
"",
);
}
}