Lazy static init of schemes

This commit is contained in:
Jeremy Soller 2016-08-16 11:04:14 -06:00
parent 7a1c263bc1
commit d383cfb595
4 changed files with 40 additions and 8 deletions

View file

@ -70,9 +70,6 @@
#![feature(question_mark)]
#![no_std]
#[macro_use]
extern crate bitflags;
use arch::interrupt::{enable_interrupts, halt};
/// Architecture specific items (test)
@ -89,6 +86,12 @@ extern crate alloc;
#[macro_use]
extern crate collections;
#[macro_use]
extern crate bitflags;
#[macro_use]
extern crate lazy_static;
extern crate spin;
/// Context management
pub mod context;