#include <thrill/common/string.hpp>
#include <thrill/mem/malloc_tracker.hpp>
#include <thrill/mem/manager.hpp>
#include <tlx/allocator_base.hpp>
#include <tlx/string/ssprintf_generic.hpp>
#include <atomic>
#include <cassert>
#include <deque>
#include <iosfwd>
#include <new>
#include <string>
#include <type_traits>
#include <vector>
Go to the source code of this file.
|
template<typename T > |
using | by_deque = std::deque< T, BypassAllocator< T > > |
| deque without malloc tracking More...
|
|
using | by_string = std::basic_string< char, std::char_traits< char >, BypassAllocator< char > > |
| string without malloc tracking More...
|
|
using | by_stringbuf = std::basic_stringbuf< char, std::char_traits< char >, BypassAllocator< char > > |
| stringbuf without malloc tracking More...
|
|
template<typename T > |
using | by_vector = std::vector< T, BypassAllocator< T > > |
| vector without malloc tracking More...
|
|
template<typename Type > |
using | BypassAllocator = FixedAllocator< Type, g_bypass_manager > |
| instantiate FixedAllocator as BypassAllocator More...
|
|
◆ THRILL_MEM_ALLOCATOR_BASE_HEADER
#define THRILL_MEM_ALLOCATOR_BASE_HEADER |