Struct alloc_buddy_simple::FreeBlock [] [src]

pub struct FreeBlock { /* fields omitted */ }

A free block in our heap. This is actually a header that we store at the start of the block. We don't store any size information in the header, because we a separate free block list for each block size.