aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNoodleDoodleNoodleDoodleNoodleDoodleNoo <xeven77@outlook.com>2015-07-17 20:02:29 -0700
committerNoodleDoodleNoodleDoodleNoodleDoodleNoo <xeven77@outlook.com>2015-07-17 20:02:29 -0700
commit70ae2ee711c8262f5aba9ebe81f7b5b49bc26e6b (patch)
tree9f574dd73df4a3b2703de79d201d7113a73f70db
parentFixed MINGW duplicate library errors when MSYS folder cannot be found. (diff)
downloadmonero-70ae2ee711c8262f5aba9ebe81f7b5b49bc26e6b.tar.xz
Fixed threadpool bug when running on single core systems.
*Thanks to freshman for reporting bug.
-rw-r--r--src/cryptonote_core/blockchain.cpp13
1 files changed, 8 insertions, 5 deletions
diff --git a/src/cryptonote_core/blockchain.cpp b/src/cryptonote_core/blockchain.cpp
index ea107abb6..ffd4e7869 100644
--- a/src/cryptonote_core/blockchain.cpp
+++ b/src/cryptonote_core/blockchain.cpp
@@ -2009,11 +2009,14 @@ bool Blockchain::check_tx_inputs(const transaction& tx, uint64_t* pmax_used_bloc
boost::thread_group threadpool;
std::auto_ptr < boost::asio::io_service::work > work(new boost::asio::io_service::work(ioservice));
- for (int i = 0; i < threads; i++)
- {
- threadpool.create_thread(boost::bind(&boost::asio::io_service::run, &ioservice));
- }
-
+ if(threads > 1)
+ {
+ for (int i = 0; i < threads; i++)
+ {
+ threadpool.create_thread(boost::bind(&boost::asio::io_service::run, &ioservice));
+ }
+ }
+
#define KILL_IOSERVICE() \
if(threads > 1) \
{ \