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_sleep::policy< parenttype > Struct Template Reference

#include "spinlock.hpp"

Inheritance diagram for quickcpplib::_xxx::configurable_spinlock::spins_to_sleep::policy< parenttype >:

Public Member Functions

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

Constructor & Destructor Documentation

◆ policy() [1/3]

template<class parenttype >
constexpr quickcpplib::_xxx::configurable_spinlock::spins_to_sleep::policy< parenttype >::policy ( )
inlineconstexpr
638{}

◆ policy() [2/3]

template<class parenttype >
quickcpplib::_xxx::configurable_spinlock::spins_to_sleep::policy< parenttype >::policy ( const policy< parenttype > &  )
delete

◆ policy() [3/3]

template<class parenttype >
constexpr quickcpplib::_xxx::configurable_spinlock::spins_to_sleep::policy< parenttype >::policy ( policy< parenttype > &&  o)
inlineconstexprnoexcept
641 : parenttype(std::move(o))
642 {
643 }

Member Function Documentation

◆ int_yield()

template<class parenttype >
constexpr bool quickcpplib::_xxx::configurable_spinlock::spins_to_sleep::policy< parenttype >::int_yield ( size_t  n)
inlineconstexprnoexcept
645 {
646 if(parenttype::int_yield(n))
647 return true;
648 this_thread::sleep_for(chrono::milliseconds(1));
649 return true;
650 }

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