Skip to content

Commit 80a80eb

Browse files
committed
Moved the cooperative task into a multitasking module
Signed-off-by: SlyMarbo <[email protected]>
1 parent f0c99cc commit 80a80eb

File tree

4 files changed

+5
-1
lines changed

4 files changed

+5
-1
lines changed

kernel/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@ pub mod drivers;
3939
pub mod gdt;
4040
pub mod interrupts;
4141
pub mod memory;
42+
pub mod multitasking;
4243
pub mod pci;
4344
pub mod serial;
4445
pub mod structures;
45-
pub mod task;
4646
pub mod time;
4747

4848
lazy_static! {

kernel/src/multitasking/mod.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
//! multitasking contains the functionality used to implement cooperative and
2+
//! preemptive multitasking.
3+
4+
pub mod task;
File renamed without changes.

0 commit comments

Comments
 (0)