Merge pull request #300 from svost/patch
authorCryptoManiac <CryptoManiac@users.noreply.github.com>
Wed, 6 Apr 2016 20:30:17 +0000 (23:30 +0300)
committerCryptoManiac <CryptoManiac@users.noreply.github.com>
Wed, 6 Apr 2016 20:30:17 +0000 (23:30 +0300)
Minor fix

src/kernel.cpp

index c8dc551..b18ae2b 100644 (file)
@@ -435,9 +435,13 @@ bool ScanKernelForward(unsigned char *kernel, uint32_t nBits, uint32_t nInputTxT
     // TODO: custom threads amount
 
     uint32_t nThreads = boost::thread::hardware_concurrency();
+    if (nThreads == 0)
+    {
+       nThreads = 1;
+       printf("Warning: hardware_concurrency() failed in %s:%d\n", __FILE__, __LINE__);
+    }
     uint32_t nPart = (SearchInterval.second - SearchInterval.first) / nThreads;
 
-
     KernelWorker *workers = new KernelWorker[nThreads];
 
     boost::thread_group group;