Struct main::kernel::mm::allocator::BuddyAlloc [collapse all] [expand all] [src]
pub struct BuddyAlloc {
pub order: uint,
pub tree: Bitv,
}The buddy memory allocation[1] system is implemented with the use of a binary tree. It can be augmented with the use of linked lists[2].
Fields
order | |
tree |