Merge branch 'evo' into feature-per-pool-algo

This commit is contained in:
XMRig
2019-07-06 10:49:31 +07:00
79 changed files with 9889 additions and 40 deletions

View File

@@ -77,7 +77,7 @@ public:
# endif
# ifdef XMRIG_ALGO_RANDOMX
static void updateDataset(const uint8_t* seed_hash, uint32_t num_threads);
static void updateDataset(const uint8_t* seed_hash, uint32_t num_threads, const xmrig::Algorithm &algorithm);
static randomx_dataset* getDataset();
# endif
@@ -128,6 +128,7 @@ private:
static randomx_cache *m_rx_cache;
static randomx_dataset *m_rx_dataset;
static uint8_t m_rx_seed_hash[32];
static xmrig::Algorithm m_rx_algo;
static std::atomic<uint32_t> m_rx_dataset_init_thread_counter;
# endif
};