buddy_pool 0.0.1

simple buddy allocator
Documentation
  • Coverage
  • 24.53%
    13 out of 53 items documented1 out of 17 items with examples
  • Size
  • Source code size: 97.24 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 848.74 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 11s Average build duration of successful builds.
  • all releases: 11s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • jbertoni/BuddyPool
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • jbertoni

BuddyPool

a minimal buddy-system pool allocator

This library implements a simple buddy allocator. The code does not assume that the underlying memory (or other resource) is accessible directly by the processor. It thus can be used, for example to manage I/O memory that is not mapped into the processor address space, or unmapped main memory.

As part of this approach, BuddyPool does not contain any unsafe code. It uses Vec structures with integers for linking lists.