Struct mnemos_alloc::heap::MnemosAlloc
source · pub struct MnemosAlloc<U> {
allocator: U,
}
Expand description
Mnemos Allocator
This is a wrapper type over an implementor of UnderlyingAllocator.
This “inherits” any of the behaviors and safety requirements of the chosen UnderlyingAllocator, and in addition has two major special behaviors that are intended to help respond gracefully to ephemeral Out of Memory conditions
- On alloc:
- We check whether allocation is inhibited. If it is - a nullptr is returned, regardless of whether there is sufficient room to allocate the requested amount.
- If we are NOT inhibited, but are now out of memory (the underlying allocator returned a nullptr), we inhibit further allocations until the next deallocation occurs
- On dealloc:
- The “inhibit allocations” flag is cleared
- If any tasks are waiting on the “OOM” queue, they are ALL awoken if the inhibit flag was previously set
These two details are intended to allow the “async allocation aware” types defined in crate::containers to yield if allocation is not currently possible.
By wrapping the UnderlyingAllocator, we allow non-async-aware allocations (like those through alloc::alloc::alloc() or alloc::alloc::dealloc()) to trigger these behaviors. However, non-async-aware allocations are still subject to normal OOM handling, which typically means panicking.
Fields§
§allocator: U
Implementations§
Trait Implementations§
source§impl<U: UnderlyingAllocator> GlobalAlloc for MnemosAlloc<U>
impl<U: UnderlyingAllocator> GlobalAlloc for MnemosAlloc<U>
source§unsafe fn alloc(&self, layout: Layout) -> *mut u8
unsafe fn alloc(&self, layout: Layout) -> *mut u8
Allocate memory as described by the given
layout
. Read moreAuto Trait Implementations§
impl<U> RefUnwindSafe for MnemosAlloc<U>where U: RefUnwindSafe,
impl<U> Send for MnemosAlloc<U>where U: Send,
impl<U> Sync for MnemosAlloc<U>where U: Sync,
impl<U> Unpin for MnemosAlloc<U>where U: Unpin,
impl<U> UnwindSafe for MnemosAlloc<U>where U: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more