From 910c714b46d2b3d3510311a9eb5d498ac76e3f0a Mon Sep 17 00:00:00 2001 From: 4lDO2 <4lDO2@protonmail.com> Date: Fri, 21 Feb 2025 11:34:00 +0100 Subject: [PATCH] Rename procmngr => procmgr. --- src/exec.rs | 2 +- src/lib.rs | 2 +- src/{procmngr.rs => procmgr.rs} | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename src/{procmngr.rs => procmgr.rs} (100%) diff --git a/src/exec.rs b/src/exec.rs index e092d6ec5b..825e4003bf 100644 --- a/src/exec.rs +++ b/src/exec.rs @@ -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() }; diff --git a/src/lib.rs b/src/lib.rs index 71e88a352c..515955489b 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -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; diff --git a/src/procmngr.rs b/src/procmgr.rs similarity index 100% rename from src/procmngr.rs rename to src/procmgr.rs