12#include "vecmem/memory/details/memory_resource_base.hpp"
13#include "vecmem/memory/memory_resource.hpp"
14#include "vecmem/vecmem_core_export.hpp"
23class arena_memory_resource_impl;
71 std::unique_ptr<details::arena_memory_resource_impl> m_impl;
An allocator class that wraps a memory resource.
Definition allocator.hpp:37
Memory resource implementing an arena allocation scheme.
Definition arena_memory_resource.hpp:27
arena_memory_resource(const arena_memory_resource &)=delete
Disallow copying the memory resource.
VECMEM_CORE_EXPORT arena_memory_resource & operator=(arena_memory_resource &&rhs) noexcept
Move assignment operator.
VECMEM_CORE_EXPORT arena_memory_resource(arena_memory_resource &&parent) noexcept
Move constructor.
VECMEM_CORE_EXPORT void * do_allocate(std::size_t bytes, std::size_t) override
Allocate memory in the arena.
VECMEM_CORE_EXPORT ~arena_memory_resource() override
Destructor.
arena_memory_resource & operator=(const arena_memory_resource &)=delete
Disallow copying the memory resource.
VECMEM_CORE_EXPORT void do_deallocate(void *p, std::size_t bytes, std::size_t) override
De-allocate a previously allocated memory block.
Base class for implementations of the vecmem::memory_resource interface.
Definition memory_resource_base.hpp:25
Main namespace for the vecmem classes/functions.
Definition atomic_ref.hpp:16