mirror of
https://github.com/monero-project/monero.git
synced 2025-08-13 17:35:32 -04:00
Merge pull request #8223
17772ef
Eliminate dependence on boost::interprocess #8223 (Jeffrey)
This commit is contained in:
commit
bb093ec9a8
10 changed files with 43 additions and 50 deletions
|
@ -118,14 +118,14 @@ namespace cryptonote
|
|||
};
|
||||
|
||||
|
||||
volatile uint32_t m_stop;
|
||||
std::atomic<bool> m_stop;
|
||||
epee::critical_section m_template_lock;
|
||||
block m_template;
|
||||
std::atomic<uint32_t> m_template_no;
|
||||
std::atomic<uint32_t> m_starter_nonce;
|
||||
difficulty_type m_diffic;
|
||||
uint64_t m_height;
|
||||
volatile uint32_t m_thread_index;
|
||||
std::atomic<uint32_t> m_thread_index;
|
||||
volatile uint32_t m_threads_total;
|
||||
std::atomic<uint32_t> m_threads_active;
|
||||
std::atomic<int32_t> m_pausers_count;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue