mirror of
https://github.com/Retropex/bitcoin.git
synced 2025-05-28 21:12:29 +02:00
Add thread safety annotations to RNG state
This commit is contained in:
parent
d3f54d1c82
commit
aae8b9bf0f
@ -297,10 +297,11 @@ void GetRandBytes(unsigned char* buf, int num)
|
||||
namespace {
|
||||
struct RNGState {
|
||||
Mutex m_mutex;
|
||||
unsigned char m_state[32] = {0};
|
||||
uint64_t m_counter = 0;
|
||||
unsigned char m_state[32] GUARDED_BY(m_mutex) = {0};
|
||||
uint64_t m_counter GUARDED_BY(m_mutex) = 0;
|
||||
|
||||
explicit RNGState() {
|
||||
RNGState()
|
||||
{
|
||||
InitHardwareRand();
|
||||
}
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user