11 #ifndef LIBPMEMOBJ_CPP_MAKE_PERSISTENT_ARRAY_ATOMIC_HPP
12 #define LIBPMEMOBJ_CPP_MAKE_PERSISTENT_ARRAY_ATOMIC_HPP
21 #include <libpmemobj/atomic_base.h>
51 typedef typename detail::pp_array_type<T>::type I;
53 auto ret = pmemobj_xalloc(
pool.
handle(), ptr.raw_ptr(),
sizeof(I) * N,
54 detail::type_num<I>(), flag.value,
55 &detail::array_constructor<I>,
56 static_cast<void *
>(&N));
59 throw std::bad_alloc();
79 pool_base &
pool,
typename detail::pp_if_size_array<T>::type &ptr,
82 typedef typename detail::pp_array_type<T>::type I;
83 std::size_t N = detail::pp_array_elems<T>::elems;
85 auto ret = pmemobj_xalloc(
pool.
handle(), ptr.raw_ptr(),
sizeof(I) * N,
86 detail::type_num<I>(), flag.value,
87 &detail::array_constructor<I>,
88 static_cast<void *
>(&N));
91 throw std::bad_alloc();
104 template <
typename T>
113 pmemobj_free(ptr.raw_ptr());
125 template <
typename T>
133 pmemobj_free(ptr.raw_ptr());
allocation_flag - defines flags which can be passed to make_persistent
Compile time type check for make_persistent.
The non-template pool base class.
Definition: pool.hpp:50
PMEMobjpool * handle() noexcept
Gets the C style handle to the pool.
Definition: pool.hpp:394
PMEMobj pool class.
Definition: pool.hpp:482
Commonly used functionality.
Implementation details of atomic allocation and construction.
void delete_persistent_atomic(typename detail::pp_if_array< T >::type &ptr, std::size_t)
Atomically deallocate an array of objects.
Definition: make_persistent_array_atomic.hpp:106
void make_persistent_atomic(pool_base &pool, typename detail::pp_if_array< T >::type &ptr, std::size_t N, allocation_flag_atomic flag=allocation_flag_atomic::none())
Atomically allocate an array of objects.
Definition: make_persistent_array_atomic.hpp:46
Persistent memory namespace.
Definition: allocation_flag.hpp:15
Type of flag which can be passed to make_persistent_atomic.
Definition: allocation_flag.hpp:94
static allocation_flag_atomic none()
Do not change allocator behaviour.
Definition: allocation_flag.hpp:115
Helper functionality for handling variadic templates.