slabmalloc 0.2.1

Simple slab based malloc implementation in rust. Can be used stand-alone or in order to provide the necessary interface to rusts liballoc library. slabmalloc only relies on libcore.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[package]
name = "slabmalloc"
version = "0.2.1"
authors = ["Gerd Zellweger <mail@gerdzellweger.com>"]
description = "Simple slab based malloc implementation in rust. Can be used stand-alone or in order to provide the necessary interface to rusts liballoc library. slabmalloc only relies on libcore."
homepage = "https://github.com/gz/rust-slabmalloc"
repository = "https://github.com/gz/rust-slabmalloc"
documentation = "http://gz.github.io/rust-slabmalloc/slabmalloc/"

readme = "README.md"
license = "MIT"

keywords = ["os", "malloc", "slab", "alloc", "memory"]

[dev-dependencies]
rand = "0.3"
libc = "*"