genode/repos/base/src/base/allocator
Norman Feske eaab23c012 base: const-correctness of Allocator interface
This patch adds const qualifiers to the functions Allocator::consumed,
Allocator::overhead, Allocator::avail, and Range_allocator::valid_addr.

Fixes #1481
2015-04-17 16:13:22 +02:00
..
README Move repositories to 'repos/' subdirectory 2014-05-14 16:08:00 +02:00
allocator_avl.cc base: const-correctness of Allocator interface 2015-04-17 16:13:22 +02:00
slab.cc base: const-correctness of Allocator interface 2015-04-17 16:13:22 +02: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).