BSHA3  0.17.99
P2P Blockchain, based on Bitcoin
Public Member Functions | Private Attributes | List of all members
CSemaphore Class Reference

#include <sync.h>

Public Member Functions

 CSemaphore (int init)
 
void wait ()
 
bool try_wait ()
 
void post ()
 

Private Attributes

std::condition_variable condition
 
std::mutex mutex
 
int value
 

Detailed Description

Definition at line 200 of file sync.h.

Constructor & Destructor Documentation

◆ CSemaphore()

CSemaphore::CSemaphore ( int  init)
inlineexplicit

Definition at line 208 of file sync.h.

Member Function Documentation

◆ post()

void CSemaphore::post ( )
inline

Definition at line 226 of file sync.h.

Here is the caller graph for this function:

◆ try_wait()

bool CSemaphore::try_wait ( )
inline

Definition at line 217 of file sync.h.

Here is the caller graph for this function:

◆ wait()

void CSemaphore::wait ( )
inline

Definition at line 210 of file sync.h.

Here is the caller graph for this function:

Member Data Documentation

◆ condition

std::condition_variable CSemaphore::condition
private

Definition at line 203 of file sync.h.

◆ mutex

std::mutex CSemaphore::mutex
private

Definition at line 204 of file sync.h.

◆ value

int CSemaphore::value
private

Definition at line 205 of file sync.h.


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