TDME2 1.9.121
Public Member Functions | Private Attributes | List of all members
SpinLock Class Reference

Spin Lock implementation. More...

#include <tdme/os/threading/SpinLock.h>

Collaboration diagram for SpinLock:
Collaboration graph

Public Member Functions

 SpinLock (const string &name)
 Public constructor. More...
 
 ~SpinLock ()
 Destroys the spin lock. More...
 
bool tryLock ()
 Tries to locks the spin lock. More...
 
void lock ()
 Locks the spin lock, additionally spin lock locks will block until other locks have been unlocked. More...
 
void unlock ()
 Unlocks this spin lock. More...
 

Private Attributes

string name
 
atomic_flag locked = ATOMIC_FLAG_INIT
 

Detailed Description

Spin Lock implementation.

Author
Andreas Drewke

Definition at line 16 of file SpinLock.h.

Constructor & Destructor Documentation

◆ SpinLock()

SpinLock ( const string &  name)

Public constructor.

Parameters
namename

Definition at line 11 of file SpinLock.cpp.

◆ ~SpinLock()

~SpinLock ( )

Destroys the spin lock.

Definition at line 15 of file SpinLock.cpp.

Member Function Documentation

◆ lock()

void lock ( )
inline

Locks the spin lock, additionally spin lock locks will block until other locks have been unlocked.

Definition at line 40 of file SpinLock.h.

◆ tryLock()

bool tryLock ( )
inline

Tries to locks the spin lock.

Definition at line 32 of file SpinLock.h.

◆ unlock()

void unlock ( )
inline

Unlocks this spin lock.

Definition at line 47 of file SpinLock.h.

Member Data Documentation

◆ locked

atomic_flag locked = ATOMIC_FLAG_INIT
private

Definition at line 53 of file SpinLock.h.

◆ name

string name
private

Definition at line 52 of file SpinLock.h.


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