QuickCppLib 0.10
Eliminate all the tedious hassle when making state-of-the-art C++ 14 - 23 libraries!
Loading...
Searching...
No Matches
quickcpplib::_xxx::configurable_spinlock::lockable_ptr< T > Struct Template Reference

Lets you use a pointer to memory as a spinlock :) More...

#include "spinlock.hpp"

Inheritance diagram for quickcpplib::_xxx::configurable_spinlock::lockable_ptr< T >:

Public Member Functions

constexpr lockable_ptr (T *v=nullptr)
 
T * get () noexcept
 Returns the memory pointer part of the atomic.
 
const T * get () const noexcept
 Returns the memory pointer part of the atomic.
 
T & operator* () noexcept
 
const T & operator* () const noexcept
 
T * operator-> () noexcept
 
const T * operator-> () const noexcept
 

Public Attributes

ptr
 STL member.
 

Detailed Description

template<typename T>
struct quickcpplib::_xxx::configurable_spinlock::lockable_ptr< T >

Lets you use a pointer to memory as a spinlock :)

Template Parameters
TThe type of the pointer

Constructor & Destructor Documentation

◆ lockable_ptr()

template<typename T >
constexpr quickcpplib::_xxx::configurable_spinlock::lockable_ptr< T >::lockable_ptr ( T *  v = nullptr)
inlineconstexpr
108 : atomic<T *>(v)
109 {
110 }

Member Function Documentation

◆ get() [1/2]

template<typename T >
T * quickcpplib::_xxx::configurable_spinlock::lockable_ptr< T >::get ( )
inlinenoexcept

Returns the memory pointer part of the atomic.

113 {
114 union
115 {
116 T *v;
117 size_t n;
118 } value;
119 value.v = atomic<T *>::load(memory_order_relaxed);
120 value.n &= ~(size_t) 1;
121 return value.v;
122 }

◆ get() [2/2]

template<typename T >
const T * quickcpplib::_xxx::configurable_spinlock::lockable_ptr< T >::get ( ) const
inlinenoexcept

Returns the memory pointer part of the atomic.

125 {
126 union
127 {
128 T *v;
129 size_t n;
130 } value;
131 value.v = atomic<T *>::load(memory_order_relaxed);
132 value.n &= ~(size_t) 1;
133 return value.v;
134 }

◆ operator*() [1/2]

template<typename T >
T & quickcpplib::_xxx::configurable_spinlock::lockable_ptr< T >::operator* ( )
inlinenoexcept
135{ return *get(); }
T * get() noexcept
Returns the memory pointer part of the atomic.
Definition spinlock.hpp:112

◆ operator*() [2/2]

template<typename T >
const T & quickcpplib::_xxx::configurable_spinlock::lockable_ptr< T >::operator* ( ) const
inlinenoexcept
136{ return *get(); }

◆ operator->() [1/2]

template<typename T >
T * quickcpplib::_xxx::configurable_spinlock::lockable_ptr< T >::operator-> ( )
inlinenoexcept
137{ return get(); }

◆ operator->() [2/2]

template<typename T >
const T * quickcpplib::_xxx::configurable_spinlock::lockable_ptr< T >::operator-> ( ) const
inlinenoexcept
138{ return get(); }

Member Data Documentation

◆ ptr

T std::atomic< T >::ptr
inherited

STL member.


The documentation for this struct was generated from the following file: