ZeroErr
|
Go to the source code of this file.
Macros | |
#define | ZEROERR_MUTEX(x) static std::mutex x; |
#define | ZEROERR_LOCK(x) std::lock_guard<std::mutex> lock(x); |
#define | ZEROERR_ATOMIC(x) std::atomic<x> |
#define | ZEROERR_LOAD(x) x.load() |
#define ZEROERR_ATOMIC | ( | x | ) | std::atomic<x> |
#define ZEROERR_LOAD | ( | x | ) | x.load() |
#define ZEROERR_LOCK | ( | x | ) | std::lock_guard<std::mutex> lock(x); |
#define ZEROERR_MUTEX | ( | x | ) | static std::mutex x; |