vecmem 1.14.0
|
Memory resource which wraps standard library memory allocation calls. More...
#include <vecmem/memory/host_memory_resource.hpp>
Public Member Functions | |
VECMEM_CORE_EXPORT | host_memory_resource () |
Default constructor. | |
VECMEM_CORE_EXPORT | ~host_memory_resource () |
Destructor. | |
Protected Member Functions | |
Function(s) implementing @c vecmem::memory_resource | |
virtual VECMEM_CORE_EXPORT void * | do_allocate (std::size_t size, std::size_t alignment) override final |
Allocate standard host memory. | |
virtual VECMEM_CORE_EXPORT void | do_deallocate (void *p, std::size_t size, std::size_t alignment) override final |
De-allocate a block of previously allocated memory. | |
virtual VECMEM_CORE_EXPORT bool | do_is_equal (const memory_resource &other) const noexcept override final |
Compares *this for equality with other . | |
Memory resource which wraps standard library memory allocation calls.
This is probably the simplest memory resource you can possibly write. It is a terminal resource which does nothing but wrap std::aligned_alloc
and std::free
. It is state-free (on the relevant levels of abstraction).
|
finaloverrideprotectedvirtualnoexcept |
Compares *this
for equality with other
.
Reimplemented from vecmem::details::memory_resource_base.