Introduce syscall6. Add unlinkat and remove unlink and rmdir.

This commit is contained in:
Ibuki Omatsu
2025-12-18 01:31:04 +00:00
committed by Jeremy Soller
parent d9eae6bb75
commit e30ed9ab6a
23 changed files with 204 additions and 112 deletions
+2 -2
View File
@@ -65,10 +65,10 @@ pub unsafe fn debugger(target_id: Option<*const ContextLock>, token: &mut CleanL
if !context.status_reason.is_empty() {
println!("reason: {}", context.status_reason);
}
if let Some([a, b, c, d, e, f]) = context.current_syscall() {
if let Some([a, b, c, d, e, f, g]) = context.current_syscall() {
println!(
"syscall: {}",
crate::syscall::debug::format_call(a, b, c, d, e, f)
crate::syscall::debug::format_call(a, b, c, d, e, f, g)
);
}
if let Some(ref addr_space) = context.addr_space {