Job flow WIP.

This commit is contained in:
XMRig 2017-06-11 06:52:23 +03:00
parent bcef4b12ec
commit 3ad11685cc
14 changed files with 126 additions and 25 deletions

View file

@ -25,8 +25,10 @@
#include "workers/Handle.h"
Handle::Handle(int id) :
m_id(id),
Handle::Handle(int threadId, int64_t affinity, bool nicehash) :
m_nicehash(nicehash),
m_threadId(threadId),
m_affinity(affinity),
m_worker(nullptr)
{
}