bpf::system::Mutex class

Helper to represent a cross-platform Mutex

Constructors, destructors, conversion operators

Mutex()
~Mutex()
Mutex(Mutex&& other) noexcept

Public functions

auto operator=(Mutex&& other) -> Mutex& noexcept
void Lock() const
void Unlock() const

Function documentation

bpf::system::Mutex::Mutex()

Exceptions
memory::MemoryException if out of memory
OSException in case of system error

Constructs a mutex

bpf::system::Mutex::Mutex(Mutex&& other) noexcept

Move constructor

Mutex& bpf::system::Mutex::operator=(Mutex&& other) noexcept

Move assignment operator

void bpf::system::Mutex::Lock() const

Exceptions
OSException in case of system error

Locks this mutex

void bpf::system::Mutex::Unlock() const

Exceptions
OSException in case of system error

Unlocks this mutex