genode/base/src/base/allocator
Norman Feske db2fe17269 base: Add Allocator_avl::size_at function
This function provides a way to request the size of an previously
allocated block. It is useful to to ease the implementation of realloc
functionality based on Allocator_avl.
2014-02-28 10:11:10 +01:00
..
README Imported Genode release 11.11 2011-12-22 16:19:25 +01:00
allocator_avl.cc base: Add Allocator_avl::size_at function 2014-02-28 10:11:10 +01:00
slab.cc Update copyright headers to 2013 2013-01-10 21:44:47 +01:00

README

This directory contains a memory-allocator implementation. The
allocator supports storing its meta-data independently from the
managed memory area. This is useful if the allocator is used
to manage memory that is not accessible by the allocator itself
(e.g., virtual memory of another protection domain).