class Mutex

Wrapper class around an OS native mutex.

Public Methods

[more]inline Mutex()
Create an unlocked mutex
[more]inline void lock()
Block until the mutex is available, then grab it
[more]inline void unlock()
Release the mutex
[more]inline ~Mutex()
Delete the mutex


Documentation

Wrapper class around an OS native mutex. This implementation assumes a POSIX pthreads compliant interface to the native thread library.
oinline Mutex()
Create an unlocked mutex

oinline void lock()
Block until the mutex is available, then grab it

oinline void unlock()
Release the mutex

oinline ~Mutex()
Delete the mutex


This class has no child classes.

Alphabetic index HTML hierarchy of classes or Java



This page was generated with the help of DOC++.