#include "blocxx/BLOCXX_config.h"#include "blocxx/MutexImpl.hpp"#include <cerrno>#include <cassert>Go to the source code of this file.
Namespaces | |
| namespace | BLOCXX_NAMESPACE |
| Taken from RFC 1321. | |
| namespace | BLOCXX_NAMESPACE::MutexImpl |
| The MutexImpl namespace represents the functionality needed by the BloCxx Mutex class (Mutex). | |
Functions | |
| int | BLOCXX_NAMESPACE::MutexImpl::createMutex (Mutex_t &handle) |
| Create a platform specific mutext handle. | |
| int | BLOCXX_NAMESPACE::MutexImpl::destroyMutex (Mutex_t &handle) |
| Destroy a mutex previously created with createMutex. | |
| int | BLOCXX_NAMESPACE::MutexImpl::acquireMutex (Mutex_t &handle) |
| Acquire the mutex specified by a given mutex handle. | |
| int | BLOCXX_NAMESPACE::MutexImpl::releaseMutex (Mutex_t &handle) |
| Release a mutex that was previously acquired with the acquireMutex method. | |