Let executor enable interrupts

This commit is contained in:
Philipp Oppermann
2020-03-08 14:51:51 +01:00
parent b3ba0ba4e9
commit 08582948c5

View File

@@ -27,7 +27,6 @@ fn kernel_main(boot_info: &'static BootInfo) -> ! {
allocator::init_heap(&mut mapper, &mut frame_allocator).expect("heap initialization failed");
blog_os::interrupts::init_queues();
x86_64::instructions::interrupts::enable();
// allocate a number on the heap
let heap_value = Box::new(41);