[][src]Struct drone_core::heap::Pool

pub struct Pool { /* fields omitted */ }

The set of free memory blocks.

It operates by connecting unallocated regions of memory together in a linked list, using the first word of each unallocated region as a pointer to the next.

Methods

impl Pool[src]

pub const fn new(address: usize, size: usize, capacity: usize) -> Self[src]

Creates a new Pool.

pub fn size(&self) -> usize[src]

Returns the block size.

pub fn alloc(&self) -> Option<NonNull<u8>>[src]

Allocates one block of memory.

If this method returns Some(addr), then the addr returned will be non-null address pointing to the block. If this method returns None, then the pool is exhausted.

This operation is lock-free and has O(1) time complexity.

pub unsafe fn dealloc(&self, ptr: NonNull<u8>)[src]

Deallocates the block referenced by ptr.

This operation is lock-free and has O(1) time complexity.

Safety

  • ptr must point to a block previously allocated by alloc.
  • ptr must not be used after deallocation.

Trait Implementations

impl Sync for Pool[src]

Auto Trait Implementations

impl Unpin for Pool

impl !Send for Pool

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]