#include "DLLInfo.h"
#include <NDEVR/BaseValues.h>
#include <NDEVR/Dictionary.h>
#include <mutex>
Go to the source code of this file.
|
class | RLock |
| Used to lock a particular variable for reading. Any number of readers can be created when no write locks are on a variable, otherwise will wait. More...
|
|
class | RWLock |
| Maintains a pair of associated locks, one for read-only operations and one for writing. The read lock may be held simultaneously by multiple reader. More...
|
|
class | WLock |
| Used to lock a particular variable for writing. Only one write lock can be created when no read locks are on a variable, otherwise will wait. More...
|
|