grp and inttypes cleanup

This commit is contained in:
auronandace
2026-02-19 15:51:33 +00:00
parent 976ed3c276
commit 874e11b147
3 changed files with 14 additions and 15 deletions
+1 -2
View File
@@ -6,7 +6,6 @@ use core::{
};
use redox_rt::{
RtTcb,
proc::*,
protocol::{WaitFlags, wifstopped},
sys::{Resugid, WaitpidTarget},
};
@@ -312,7 +311,7 @@ impl Pal for Sys {
// TODO: Find way to avoid lock.
let _guard = CLONE_LOCK.write();
Ok(fork_impl(&redox_rt::proc::ForkArgs::Managed)? as pid_t)
Ok(redox_rt::proc::fork_impl(&redox_rt::proc::ForkArgs::Managed)? as pid_t)
}
fn fstat(fildes: c_int, mut buf: Out<stat>) -> Result<()> {