Added class RxQueue, class Rx now thin static wrapper on top of RxQueue.

This commit is contained in:
XMRig 2019-10-06 07:47:41 +07:00
parent d5af5cf8f8
commit 59b62dcb77
6 changed files with 313 additions and 145 deletions

View file

@ -46,12 +46,12 @@ class RxDataset;
class Rx
{
public:
static bool init(const Job &job, const RxConfig &config, bool hugePages, IRxListener *listener);
static bool init(const Job &job, const RxConfig &config, bool hugePages);
static bool isReady(const Job &job);
static RxDataset *dataset(const Job &job, uint32_t nodeId);
static std::pair<uint32_t, uint32_t> hugePages();
static void destroy();
static void init();
static void init(IRxListener *listener);
};