Crate frusa

source ·
Expand description

A Global Allocator with dynamic memory expansion and on-demand reclaim.

It uses a fallback (system) allocator as its “back-end” allocator.

Memory is requested from the fallback allocator dynamically (when needed) and is returned back via an explicit reclaim() call (if not in use).

Structs§

  • An allocator that manages allocations below 2M and uses the fallback allocator for the rest.
  • An allocator that manages allocations below 4K and uses the fallback allocator for the rest.
  • Basic usage statistics.