Rename multitasking module to threads

This commit is contained in:
Philipp Oppermann
2020-01-23 09:18:00 +01:00
parent 11a0eb679c
commit cd138a3a1b
4 changed files with 10 additions and 5 deletions

View File

@@ -54,7 +54,7 @@ fn kernel_main(boot_info: &'static BootInfo) -> ! {
#[cfg(test)]
test_main();
use blog_os::multitasking::{create_thread, create_thread_from_closure};
use blog_os::threads::{create_thread, create_thread_from_closure};
create_thread(thread_1, 1, &mut mapper, &mut frame_allocator);
create_thread(thread_2, 1, &mut mapper, &mut frame_allocator);