Rename procmngr => procmgr.

This commit is contained in:
4lDO2
2025-02-21 11:34:00 +01:00
parent 5fba53023e
commit 910c714b46
3 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -63,7 +63,7 @@ pub fn main() -> ! {
);
spawn("process manager", &auth, &this_thr_fd, |write_fd| {
crate::procmngr::run(write_fd, &auth)
crate::procmgr::run(write_fd, &auth)
});
let init_proc_fd = unsafe { redox_rt::proc::make_init() };
+1 -1
View File
@@ -20,7 +20,7 @@ pub mod arch;
pub mod exec;
pub mod initfs;
pub mod procmngr;
pub mod procmgr;
pub mod start;
extern crate alloc;
View File