[][src]Struct xalloc::tlsf::Tlsf

pub struct Tlsf<T, A, P> where
    A: UnsafeArena<TlsfBlock<T, P>, Ptr = P>,
    P: Clone + Default + PartialEq + Eq + Debug
{ /* fields omitted */ }

TLSF-based external memory allocator.

See the module-level documentation for more.

Type parameters

  • T is an integer type used to represent region sizes. You usually use u32 or u64 for this.
  • A is a memory arena type used to allocate internal block structures.

Methods

impl<T, P, A> Tlsf<T, A, P> where
    T: BinaryUInteger,
    A: UnsafeArena<TlsfBlock<T, P>, Ptr = P>,
    P: Clone + Default + PartialEq + Eq + Debug
[src]

pub fn with_arena(size: T, arena: A) -> Self[src]

Construct a Tlsf.

pub fn arena(&self) -> &A[src]

Get a reference to the underlying memory arena.

pub fn arena_mut(&mut self) -> &mut A[src]

Get a mutable reference to the underlying memory arena.

pub fn alloc_aligned(&mut self, size: T, align: T) -> Option<(TlsfRegion<P>, T)>[src]

Allocate a region of the size size with a given alignment requirement.

Returns a handle of the allocated region and its offset if the allocation succeeds. Returns None otherwise.

  • align must be a power of two.
  • size must not be zero.

pub fn alloc(&mut self, size: T) -> Option<(TlsfRegion<P>, T)>[src]

Allocate a region of the size size.

Returns a handle of the allocated region and its offset if the allocation succeeds. Returns None otherwise.

size must not be zero.

pub unsafe fn dealloc_unchecked(&mut self, r: TlsfRegion<P>)[src]

Deallocate the specified region, without checking the origin of the TlsfRegion.

This might result in an undefined behavior if r originates from a different instance of Tlsf.

impl<T, P, A> Tlsf<T, A, P> where
    T: BinaryUInteger,
    A: UnsafeArena<TlsfBlock<T, P>, Ptr = P> + UnsafeArenaWithMembershipCheck<TlsfBlock<T, P>>,
    P: Clone + Default + PartialEq + Eq + Debug
[src]

pub fn dealloc(&mut self, r: TlsfRegion<P>) -> Result<(), TlsfRegion<P>>[src]

Deallocate the specified region.

Returns Err(r) if r does not originate from the same instance of Tlsf.

impl<T, P, A> Tlsf<T, A, P> where
    T: BinaryUInteger,
    A: UnsafeArena<TlsfBlock<T, P>, Ptr = P> + SafeArena<TlsfBlock<T, P>>,
    P: Clone + Default + PartialEq + Eq + Debug
[src]

pub fn dealloc_relaxed(&mut self, r: TlsfRegion<P>)[src]

Deallocate the specified region.

r must originate from the same instance of Tlsf. Otherwise, Tlsf enters an inconsistent state and possibly panics, but does not cause an undefined behavior.

Trait Implementations

impl<T: Debug, A: Debug, P: Debug> Debug for Tlsf<T, A, P> where
    A: UnsafeArena<TlsfBlock<T, P>, Ptr = P>,
    P: Clone + Default + PartialEq + Eq + Debug
[src]

Auto Trait Implementations

impl<T, A, P> Send for Tlsf<T, A, P> where
    A: Send,
    P: Send,
    T: Send

impl<T, A, P> Sync for Tlsf<T, A, P> where
    A: Sync,
    P: Sync,
    T: Sync

Blanket Implementations

impl<T> From for T[src]

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

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.