mirror of
https://github.com/dashpay/dash.git
synced 2024-12-27 04:52:59 +01:00
Cleaned up the critical section macros.
This commit is contained in:
parent
8fb6134aa5
commit
3083cf100a
24
src/util.h
24
src/util.h
@ -243,19 +243,20 @@ public:
|
|||||||
pcs = &csIn;
|
pcs = &csIn;
|
||||||
pcs->Enter(pszName, pszFile, nLine);
|
pcs->Enter(pszName, pszFile, nLine);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
operator bool() const
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
~CCriticalBlock()
|
~CCriticalBlock()
|
||||||
{
|
{
|
||||||
pcs->Leave();
|
pcs->Leave();
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// WARNING: This will catch continue and break!
|
|
||||||
// break is caught with an assertion, but there's no way to detect continue.
|
|
||||||
// I'd rather be careful than suffer the other more error prone syntax.
|
|
||||||
// The compiler will optimise away all this loop junk.
|
|
||||||
#define CRITICAL_BLOCK(cs) \
|
#define CRITICAL_BLOCK(cs) \
|
||||||
for (bool fcriticalblockonce=true; fcriticalblockonce; assert(("break caught by CRITICAL_BLOCK!" && !fcriticalblockonce)), fcriticalblockonce=false) \
|
if (CCriticalBlock criticalblock = CCriticalBlock(cs, #cs, __FILE__, __LINE__))
|
||||||
for (CCriticalBlock criticalblock(cs, #cs, __FILE__, __LINE__); fcriticalblockonce; fcriticalblockonce=false)
|
|
||||||
|
|
||||||
class CTryCriticalBlock
|
class CTryCriticalBlock
|
||||||
{
|
{
|
||||||
@ -267,6 +268,12 @@ public:
|
|||||||
{
|
{
|
||||||
pcs = (csIn.TryEnter(pszName, pszFile, nLine) ? &csIn : NULL);
|
pcs = (csIn.TryEnter(pszName, pszFile, nLine) ? &csIn : NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
operator bool() const
|
||||||
|
{
|
||||||
|
return Entered();
|
||||||
|
}
|
||||||
|
|
||||||
~CTryCriticalBlock()
|
~CTryCriticalBlock()
|
||||||
{
|
{
|
||||||
if (pcs)
|
if (pcs)
|
||||||
@ -274,12 +281,11 @@ public:
|
|||||||
pcs->Leave();
|
pcs->Leave();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
bool Entered() { return pcs != NULL; }
|
bool Entered() const { return pcs != NULL; }
|
||||||
};
|
};
|
||||||
|
|
||||||
#define TRY_CRITICAL_BLOCK(cs) \
|
#define TRY_CRITICAL_BLOCK(cs) \
|
||||||
for (bool fcriticalblockonce=true; fcriticalblockonce; assert(("break caught by TRY_CRITICAL_BLOCK!" && !fcriticalblockonce)), fcriticalblockonce=false) \
|
if (CTryCriticalBlock criticalblock = CTryCriticalBlock(cs, #cs, __FILE__, __LINE__))
|
||||||
for (CTryCriticalBlock criticalblock(cs, #cs, __FILE__, __LINE__); fcriticalblockonce && (fcriticalblockonce = criticalblock.Entered()); fcriticalblockonce=false)
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user