History log of /seL4-test-master/projects/seL4_libs/libsel4utils/src/slab.c
Revision Date Author Comments
# 0016dfc6 13-Jul-2017 Anna Lyons <Anna.Lyons@data61.csiro.au>

Fix all the whitespace

- remove trailing whitespace
- remove duplicate blank lines
- remove blank lines at end of files


# 403522d7 26-Mar-2017 Anna Lyons <Anna.Lyons@data61.csiro.au>

sel4utils: Add a preallocating slab allocator

This commit adds a preallocating slab allocator which allows users to
specify an amount of objects to preallocate. The allocator will sort the
objects by size and allocate from one untyped of the total size of all
objects, to improve cache locality and reduce cache conflicts.

The allocator does not implement free.