From 26397084f65ddadd77bf8924967b15574671eb68 Mon Sep 17 00:00:00 2001 From: Jeremy Soller <jackpot51@gmail.com> Date: Mon, 15 Aug 2016 15:01:24 -0600 Subject: [PATCH] Cleanup, use spinlock for allocator --- lib.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/lib.rs b/lib.rs index e1db70cc..257c9dd7 100644 --- a/lib.rs +++ b/lib.rs @@ -85,10 +85,6 @@ extern crate arch_test as arch; #[macro_use] extern crate arch_x86_64 as arch; -/// Bump allocator -#[cfg(all(not(test), target_arch = "x86_64"))] -extern crate bump_allocator; - extern crate alloc; #[macro_use] extern crate collections; -- GitLab