rusty_mos::memory

Module buddy_allocator

Source
Expand description

Global allocator use the buddy system.

The category count can be specified via a const generic. The smallest alloc unit is one page while the largest is (2 ^ (category - 1)) pages.

This allocator can be used after the page-memory manager is initilized.

Structsยง

  • The real allocator provided to the Rust. A wrapper.
  • BuddyInner ๐Ÿ”’
    The buddy system core data structure.