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§

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