From 08582948c54489806a2c2e3aecd34bbc076b945f Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Sun, 8 Mar 2020 14:51:51 +0100 Subject: [PATCH] Let executor enable interrupts --- src/main.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index f7871cb2..d30f28e5 100644 --- a/src/main.rs +++ b/src/main.rs @@ -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);