From 5cb0fcee8137d6de8d2b9525aa45fd11ab2231c8 Mon Sep 17 00:00:00 2001 From: Cory Fields Date: Tue, 27 Dec 2016 17:13:19 -0500 Subject: [PATCH] net: remove thread_interrupted catch This is now a std::thread, so there's no hope of catching a boost interruption point. --- src/net_processing.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/net_processing.cpp b/src/net_processing.cpp index f3a04080d..e0c12d853 100644 --- a/src/net_processing.cpp +++ b/src/net_processing.cpp @@ -2551,9 +2551,6 @@ bool ProcessMessages(CNode* pfrom, CConnman& connman, std::atomic& interru PrintExceptionContinue(&e, "ProcessMessages()"); } } - catch (const boost::thread_interrupted&) { - throw; - } catch (const std::exception& e) { PrintExceptionContinue(&e, "ProcessMessages()"); } catch (...) {