aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2015-11-24 08:42:22 +0100
committerWladimir J. van der Laan <laanwj@gmail.com>2015-11-24 08:42:29 +0100
commitf91e29fd4d0e62519d413f27c8547c9f5245f8e8 (patch)
tree54c035eae66ba1188ca8da1d08336f650f2d0b50
parent0b0fc179ab8795463e0a0f07e989ec6f592a1f90 (diff)
parent3522f49f5ae74fe3ef310fad6fa7e09d65c9c1b8 (diff)
downloadbitcoin-f91e29fd4d0e62519d413f27c8547c9f5245f8e8.tar.xz
Merge pull request #7065
3522f49 http: add Boost 1.49 compatibility (Wladimir J. van der Laan)
-rw-r--r--src/httpserver.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/httpserver.cpp b/src/httpserver.cpp
index 52f5675e85..91518d7c5f 100644
--- a/src/httpserver.cpp
+++ b/src/httpserver.cpp
@@ -487,7 +487,11 @@ void StopHTTPServer()
// master that appears to be solved, so in the future that solution
// could be used again (if desirable).
// (see discussion in https://github.com/bitcoin/bitcoin/pull/6990)
+#if BOOST_VERSION >= 105000
if (!threadHTTP.try_join_for(boost::chrono::milliseconds(2000))) {
+#else
+ if (!threadHTTP.timed_join(boost::posix_time::milliseconds(2000))) {
+#endif
LogPrintf("HTTP event loop did not exit within allotted time, sending loopbreak\n");
event_base_loopbreak(eventBase);
threadHTTP.join();