Fix potential race with parallel processing of txes/signatures/blocks

pull/95/head
moneromooo-monero 8 years ago
parent e7c8a32a28
commit 087373eccf
No known key found for this signature in database
GPG Key ID: 686F07454D6CEFC3

@ -2159,6 +2159,7 @@ bool Blockchain::check_tx_inputs(const transaction& tx, tx_verification_context
if(ioservice_active) \
{ \
work.reset(); \
while (!ioservice.stopped()) ioservice.poll(); \
threadpool.join_all(); \
ioservice.stop(); \
ioservice_active = false; \

@ -73,6 +73,7 @@ using namespace cryptonote;
#define KILL_IOSERVICE() \
do { \
work.reset(); \
while (!ioservice.stopped()) ioservice.poll(); \
threadpool.join_all(); \
ioservice.stop(); \
} while(0)

Loading…
Cancel
Save