[][src]Type Definition xalloc::tlsf::SysTlsf

type SysTlsf<T> = Tlsf<T, PooledArena<TlsfBlock<T, Ptr>, SysAllocator, Ptr>, Ptr>;

Tlsf that uses the system allocator for the internal storage allocation.

Type parameter

  • T is an integer type used to represent region sizes. You usually use u32 or u64 for this.

Implementations

impl<T: BinaryUInteger> SysTlsf<T>[src]

pub fn new(size: T) -> Self[src]

Construct a SysTlsf.

pub fn with_capacity(size: T, capacity: usize) -> Self[src]

Construct a SysTlsf with a specific capacity.