mirror of
https://github.com/hexagonal-sun/moss-kernel.git
synced 2026-02-08 05:21:58 -05:00
Add a new module for managing objects within a slab. The `Slab` struct manages objects of a given set within a contiguous set of pages. It is the handle to the underlying memory, allowing for objects to be allocated, and free'd. It manages a free list of 'indexes' within the object slots themselves.