Skip to content

Commit bc0cb68

Browse files
committed
refactor(core): address the module_inception clippy lint by renaming r3_core::kernel::{kernel → global}
1 parent 5050743 commit bc0cb68

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
File renamed without changes.

src/r3_core/src/kernel/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ mod macros;
1010
pub mod cfg;
1111
mod error;
1212
pub mod event_group;
13+
mod global;
1314
pub mod hook;
1415
pub mod hunk;
1516
pub mod interrupt;
16-
mod kernel;
1717
pub mod mutex;
1818
pub mod raw;
1919
pub mod raw_cfg;
@@ -26,10 +26,10 @@ pub use {
2626
event_group::{
2727
EventGroup, EventGroupBits, EventGroupRef, EventGroupWaitFlags, StaticEventGroup,
2828
},
29+
global::*,
2930
hook::StartupHook,
3031
hunk::Hunk,
3132
interrupt::{InterruptLine, InterruptNum, InterruptPriority, StaticInterruptHandler},
32-
kernel::*,
3333
mutex::{Mutex, MutexProtocol, MutexRef, StaticMutex},
3434
raw::{Id, QueueOrder},
3535
semaphore::{Semaphore, SemaphoreRef, SemaphoreValue, StaticSemaphore},

0 commit comments

Comments
 (0)