Added initial support for new style threads launch method.
This commit is contained in:
parent
dff59fabc2
commit
27f3008d79
32 changed files with 1429 additions and 505 deletions
|
@ -32,6 +32,8 @@
|
|||
namespace xmrig {
|
||||
|
||||
|
||||
class Job;
|
||||
class Miner;
|
||||
class Network;
|
||||
|
||||
|
||||
|
@ -46,10 +48,12 @@ public:
|
|||
void start() override;
|
||||
void stop() override;
|
||||
|
||||
Miner *miner() const;
|
||||
Network *network() const;
|
||||
|
||||
private:
|
||||
Network *m_network;
|
||||
Miner *m_miner = nullptr;
|
||||
Network *m_network = nullptr;
|
||||
};
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue