Add rust lint CI job.
Some checks failed
Check / Check Rust (pull_request) Failing after 25s

This commit is contained in:
Drew 2025-12-13 23:16:33 -08:00
parent 311755c812
commit baa6c1568e
30 changed files with 181 additions and 108 deletions

View file

@ -40,7 +40,7 @@ where
let raw_main = Box::into_raw(Box::new(main));
let proc_cap = Capability::take_copy(unsafe { crate::init::SELF_PROC_CAP }).unwrap();
let cap = syscall::thread_create(&proc_cap).unwrap();
syscall::thread_start(&cap, entry_point as u64, raw_main as u64, 0).unwrap();
syscall::thread_start(&cap, entry_point as usize as u64, raw_main as u64, 0).unwrap();
JoinHandle { cap }
}