libosmscout  0.1
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules
osmscout::Latch Class Reference

This implements a pure C++ Latch providing lock-S (shared) and lock-X (exclusive). More...

#include <ReadWriteLock.h>

Public Member Functions

 Latch ()
 
 Latch (bool _px)
 
 Latch (const Latch &)=delete
 
 Latch (Latch &&)=delete
 
void lock ()
 
void lock_shared ()
 
Latchoperator= (const Latch &)=delete
 
Latchoperator= (Latch &&)=delete
 
bool try_lock_shared ()
 
void unlock ()
 
void unlock_shared ()
 
 ~Latch ()
 

Detailed Description

This implements a pure C++ Latch providing lock-S (shared) and lock-X (exclusive).

The concept used here allows X requests to be prioritized faster and more smoothly than standard implementations. It uses a no-lock strategy whenever possible and reverts to lock and wait in race condition.

Constructor & Destructor Documentation

◆ Latch() [1/4]

osmscout::Latch::Latch ( )

◆ Latch() [2/4]

osmscout::Latch::Latch ( bool  _px)
inlineexplicit

◆ Latch() [3/4]

osmscout::Latch::Latch ( const Latch )
delete

◆ Latch() [4/4]

osmscout::Latch::Latch ( Latch &&  )
delete

◆ ~Latch()

osmscout::Latch::~Latch ( )

References n.

Member Function Documentation

◆ lock()

◆ lock_shared()

void osmscout::Latch::lock_shared ( )

◆ operator=() [1/2]

Latch& osmscout::Latch::operator= ( const Latch )
delete

◆ operator=() [2/2]

Latch& osmscout::Latch::operator= ( Latch &&  )
delete

◆ try_lock_shared()

bool osmscout::Latch::try_lock_shared ( )

References n, and osmscout::X_STEP_0.

Referenced by osmscout::ReadLock::try_lock().

◆ unlock()

void osmscout::Latch::unlock ( )

◆ unlock_shared()

void osmscout::Latch::unlock_shared ( )

The documentation for this class was generated from the following files: