slabmalloc 0.0.1

Simple slab based malloc implementation in rust. slabmalloc only relies on libcore and is designed for use in kernel level code. However using it in user-space is possible as well.
docs.rs failed to build slabmalloc-0.0.1
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: slabmalloc-0.11.0

slabmalloc

Simple slab based malloc implementation in rust, in order to provide the necessary interface to rusts liballoc library. slabmalloc only relies on libcore and is designed to be used in kernel level code as the only interface a client needs to provide is the necessary mechanism to allocate and free 4KiB frames (or any other default page-size on non-x86 hardware).

Usage

TBD