#include <vector>
#include <list>
#include <map>
#include <algorithm>
#include <boost/bind.hpp>
Go to the source code of this file.
Classes | |
struct | BlockWipedAllocator::Block |
class | BlockWipedAllocated< T > |
class | BlockWipedAllocator |
class | BlockWipedPool |
class | BlockWipedPoolAllocated |
struct | LocalCache< T > |
struct | BlockWipedAllocator::LocalCache |
class | SizeBlockWipedAllocated< T > |
struct | BlockWipedAllocator::Stat |
Functions | |
template<size_t S> | |
BlockWipedAllocator & | blockWipedAllocator () |
BlockWipedPool & | blockWipedPool () |
BlockWipedAllocator& blockWipedAllocator | ( | ) |
Definition at line 132 of file BlockWipedAllocator.h.
References BlockWipedPool::allocator(), and blockWipedPool().
{ static BlockWipedAllocator & local = blockWipedPool().allocator(S); return local; }
BlockWipedPool& blockWipedPool | ( | ) |
Definition at line 102 of file BlockWipedAllocator.cc.
Referenced by BlockWipedAllocated< T >::allocator(), BlockWipedPoolAllocated::allocator(), blockWipedAllocator(), BlockWipedAllocatorService::dump(), and BlockWipedAllocatorService::wiper().
{ static BlockWipedPool local(1024); return local; }