mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-28 01:28:53 +00:00
fbc35cb796
Issue #1908
33 lines
729 B
C++
33 lines
729 B
C++
/*
|
|
* \brief Typed slab allocator
|
|
* \author Norman Feske
|
|
* \date 2006-05-17
|
|
*/
|
|
|
|
/*
|
|
* Copyright (C) 2006-2013 Genode Labs GmbH
|
|
*
|
|
* This file is part of the Genode OS framework, which is distributed
|
|
* under the terms of the GNU General Public License version 2.
|
|
*/
|
|
|
|
#ifndef _INCLUDE__BASE__TSLAB_H_
|
|
#define _INCLUDE__BASE__TSLAB_H_
|
|
|
|
#include <base/slab.h>
|
|
|
|
namespace Genode { template <typename, size_t> struct Tslab; }
|
|
|
|
|
|
template <typename T, Genode::size_t BLOCK_SIZE>
|
|
struct Genode::Tslab : Slab
|
|
{
|
|
Tslab(Allocator *backing_store, void *initial_sb = 0)
|
|
: Slab(sizeof(T), BLOCK_SIZE, initial_sb, backing_store)
|
|
{ }
|
|
|
|
T *first_object() { return (T *)Slab::any_used_elem(); }
|
|
};
|
|
|
|
#endif /* _INCLUDE__BASE__TSLAB_H_ */
|