mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-05-12 21:00:36 +02:00
Add WITH_LOCK macro: run code while locking a mutex
Results from ryanofksy suggestion on isPotentialTip/ waitForNotifications refactoring
This commit is contained in:
parent
dae72998e8
commit
edfe9438ca
10
src/sync.h
10
src/sync.h
@ -198,6 +198,16 @@ using DebugLock = UniqueLock<typename std::remove_reference<typename std::remove
|
|||||||
LeaveCritical(); \
|
LeaveCritical(); \
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//! Run code while locking a mutex.
|
||||||
|
//!
|
||||||
|
//! Examples:
|
||||||
|
//!
|
||||||
|
//! WITH_LOCK(cs, shared_val = shared_val + 1);
|
||||||
|
//!
|
||||||
|
//! int val = WITH_LOCK(cs, return shared_val);
|
||||||
|
//!
|
||||||
|
#define WITH_LOCK(cs, code) [&] { LOCK(cs); code; }()
|
||||||
|
|
||||||
class CSemaphore
|
class CSemaphore
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user