public MTM(int threadCount, bool useSSE, float gpuPercentage) { mThreadCount = threadCount; mThreads = new WorkThread[mThreadCount]; for (int i = 0; i < mThreadCount; i++) mThreads[i] = new WorkThread(); mHashRate = 0; mCurrentWork = null; mTimer = new Timer(); }
public MTM(int threadCount, bool useSSE, float gpuPercentage) { mThreadCount = threadCount; mThreads = new WorkThread[mThreadCount]; for (int i = 0; i < mThreadCount; i++) { mThreads[i] = new WorkThread(); } mHashRate = 0; mCurrentWork = null; mTimer = new Timer(); }