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::spins_to_loop< spins, use_pause >::policy< parenttype > Struct Template Reference

#include "spinlock.hpp"

Inheritance diagram for quickcpplib::_xxx::configurable_spinlock::spins_to_loop< spins, use_pause >::policy< parenttype >:

Public Member Functions

constexpr policy ()
 
 policy (const policy &)=delete
 
constexpr policy (policy &&o) noexcept
 
constexpr bool int_yield (size_t n) noexcept
 

Static Public Attributes

static constexpr size_t spins_to_loop = spins
 

Constructor & Destructor Documentation

◆ policy() [1/3]

template<size_t spins, bool use_pause = true>
template<class parenttype >
constexpr quickcpplib::_xxx::configurable_spinlock::spins_to_loop< spins, use_pause >::policy< parenttype >::policy ( )
inlineconstexpr
593{}

◆ policy() [2/3]

template<size_t spins, bool use_pause = true>
template<class parenttype >
quickcpplib::_xxx::configurable_spinlock::spins_to_loop< spins, use_pause >::policy< parenttype >::policy ( const policy< parenttype > &  )
delete

◆ policy() [3/3]

template<size_t spins, bool use_pause = true>
template<class parenttype >
constexpr quickcpplib::_xxx::configurable_spinlock::spins_to_loop< spins, use_pause >::policy< parenttype >::policy ( policy< parenttype > &&  o)
inlineconstexprnoexcept
596 : parenttype(std::move(o))
597 {
598 }

Member Function Documentation

◆ int_yield()

template<size_t spins, bool use_pause = true>
template<class parenttype >
constexpr bool quickcpplib::_xxx::configurable_spinlock::spins_to_loop< spins, use_pause >::policy< parenttype >::int_yield ( size_t  n)
inlineconstexprnoexcept
600 {
601 if(parenttype::int_yield(n))
602 return true;
603 if(n >= spins)
604 return false;
605 detail::smt_pause<use_pause>();
606 return true;
607 }

Member Data Documentation

◆ spins_to_loop

template<size_t spins, bool use_pause = true>
template<class parenttype >
constexpr size_t quickcpplib::_xxx::configurable_spinlock::spins_to_loop< spins, use_pause >::policy< parenttype >::spins_to_loop = spins
staticconstexpr

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