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 5058da3f29
commit 3d262d82a0
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);
};