linked_list_allocator 0.1.1

Simple allocator usable for no_std systems. It builds a linked list from the freed blocks and thus needs no additional data structures.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
[package]
name = "linked_list_allocator"
version = "0.1.1"
authors = ["Philipp Oppermann <dev@phil-opp.com>"]
license = "Apache-2.0/MIT"

description = "Simple allocator usable for no_std systems. It builds a linked list from the freed blocks and thus needs no additional data structures."
keywords = ["allocator", "no_std", "malloc", "heap", "kernel"]

repository = "https://github.com/phil-opp/linked-list-allocator"
documentation = "http://phil-opp.github.io/linked-list-allocator/linked_list_allocator/index.html"

exclude = [
    "scripts/*"
]