diff options
author | Howard Chu <hyc@symas.com> | 2016-02-18 21:30:10 +0000 |
---|---|---|
committer | Howard Chu <hyc@symas.com> | 2016-02-18 21:30:10 +0000 |
commit | 7c86c5997d72062191c2fb4fbaf003bf48485842 (patch) | |
tree | 82712a6c2128ea1b818aa9e5bca5b5016744bbb5 /src/p2p/net_node.inl | |
parent | Merge pull request #675 (diff) | |
download | monero-7c86c5997d72062191c2fb4fbaf003bf48485842.tar.xz |
Use boost::thread instead of std::thread
std::thread crashes on (at least) ARMv6 g++ 4.8/4.9
Diffstat (limited to 'src/p2p/net_node.inl')
-rw-r--r-- | src/p2p/net_node.inl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/p2p/net_node.inl b/src/p2p/net_node.inl index 47a5dc6c3..56717ec66 100644 --- a/src/p2p/net_node.inl +++ b/src/p2p/net_node.inl @@ -567,7 +567,7 @@ namespace nodetool bool node_server<t_payload_net_handler>::run() { // creating thread to log number of connections - mPeersLoggerThread.reset(new std::thread([&]() + mPeersLoggerThread.reset(new boost::thread([&]() { _note("Thread monitor number of peers - start"); while (!is_closing && !m_net_server.is_stop_signal_sent()) |