forked from mischief/rust-uefi
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
allocator: add implementation of new Alloc trait
The Alloc trait for allocators was added in Rust nightly 2017/06/21 (from rust-lang/rust#42313). With the addition of allowing a global allocator to be specified (pending in rust-lang/rust#42727) this will obviate the need for the alloc_uefi crate.
- Loading branch information
Showing
2 changed files
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
use alloc::allocator::*; | ||
|
||
use base::Status; | ||
|
||
/// Rust Allocator utilizing the EFI {allocate, free}_pool functions. | ||
struct EfiAllocator {} | ||
|
||
unsafe impl<'a> Alloc for &'a EfiAllocator { | ||
unsafe fn alloc(&mut self, layout: Layout) -> Result<*mut u8, AllocErr> { | ||
::get_system_table() | ||
.boot_services() | ||
.allocate_pool(layout.size()) | ||
.map_err(|e| match e { | ||
Status::OutOfResources => AllocErr::Exhausted { request: layout }, | ||
x => AllocErr::Unsupported { details: x.str() } | ||
}) | ||
} | ||
|
||
unsafe fn dealloc(&mut self, ptr: *mut u8, _layout: Layout) { | ||
::get_system_table().boot_services().free_pool(ptr); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters