blob: fafd232d95fe0fe3f36bde17cb3889b330834c80 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
#pragma once
#include "miner_work.hpp"
#include "xmrstak/misc/environment.hpp"
#include "xmrstak/misc/console.hpp"
#include <atomic>
constexpr static size_t invalid_pool_id = (-1);
namespace xmrstak
{
struct pool_data
{
uint32_t iSavedNonce;
size_t pool_id;
pool_data() : iSavedNonce(0), pool_id(invalid_pool_id)
{
}
};
struct globalStates
{
static inline globalStates& inst()
{
auto& env = environment::inst();
if(env.pglobalStates == nullptr)
env.pglobalStates = new globalStates;
return *env.pglobalStates;
}
//pool_data is in-out winapi style
void switch_work(miner_work& pWork, pool_data& dat);
inline void calc_start_nonce(uint32_t& nonce, bool use_nicehash, uint32_t reserve_count)
{
if(use_nicehash)
nonce = (nonce & 0xFF000000) | iGlobalNonce.fetch_add(reserve_count);
else
nonce = iGlobalNonce.fetch_add(reserve_count);
}
miner_work oGlobalWork;
std::atomic<uint64_t> iGlobalJobNo;
std::atomic<uint64_t> iConsumeCnt;
std::atomic<uint32_t> iGlobalNonce;
uint64_t iThreadCount;
size_t pool_id = invalid_pool_id;
private:
globalStates() : iThreadCount(0)
{
}
};
} // namespace xmrstak
|