aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/api/wallet.cpp
diff options
context:
space:
mode:
authorRiccardo Spagni <ric@spagni.net>2016-09-18 17:21:44 +0200
committerRiccardo Spagni <ric@spagni.net>2016-09-18 17:37:47 +0200
commit8a274eab3feab820f38503f98a3caecb5dded4a5 (patch)
tree21e66eb3ea88957d0998f1adf0d4932ec1af5625 /src/wallet/api/wallet.cpp
parentMerge pull request #1095 (diff)
downloadmonero-8a274eab3feab820f38503f98a3caecb5dded4a5.tar.xz
switch wallet API from std thread/mutex to boost
Diffstat (limited to 'src/wallet/api/wallet.cpp')
-rw-r--r--src/wallet/api/wallet.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/wallet/api/wallet.cpp b/src/wallet/api/wallet.cpp
index 25a20a575..74552bc03 100644
--- a/src/wallet/api/wallet.cpp
+++ b/src/wallet/api/wallet.cpp
@@ -170,7 +170,7 @@ WalletImpl::WalletImpl(bool testnet)
m_refreshThreadDone = false;
m_refreshEnabled = false;
m_refreshIntervalSeconds = DEFAULT_REFRESH_INTERVAL_SECONDS;
- m_refreshThread = std::thread([this] () {
+ m_refreshThread = boost::thread([this] () {
this->refreshThreadFunc();
});
@@ -632,12 +632,12 @@ void WalletImpl::refreshThreadFunc()
LOG_PRINT_L3(__FUNCTION__ << ": starting refresh thread");
while (true) {
- std::unique_lock<std::mutex> lock(m_refreshMutex);
+ boost::mutex::scoped_lock lock(m_refreshMutex);
if (m_refreshThreadDone) {
break;
}
LOG_PRINT_L3(__FUNCTION__ << ": waiting for refresh...");
- m_refreshCV.wait_for(lock, std::chrono::seconds(m_refreshIntervalSeconds));
+ m_refreshCV.wait(lock);
LOG_PRINT_L3(__FUNCTION__ << ": refresh lock acquired...");
LOG_PRINT_L3(__FUNCTION__ << ": m_refreshEnabled: " << m_refreshEnabled);
LOG_PRINT_L3(__FUNCTION__ << ": m_status: " << m_status);
@@ -652,7 +652,7 @@ void WalletImpl::refreshThreadFunc()
void WalletImpl::doRefresh()
{
// synchronizing async and sync refresh calls
- std::lock_guard<std::mutex> guarg(m_refreshMutex2);
+ boost::lock_guard<boost::mutex> guarg(m_refreshMutex2);
try {
m_wallet->refresh();
} catch (const std::exception &e) {