Merge pull request #712
66c2fc7Need to link boost::chrono in more places now (Howard Chu)b937a2cUse boost::thread instead of std::thread (Howard Chu)
This commit is contained in:
@@ -65,6 +65,7 @@ target_link_libraries(blockchain_db
|
||||
crypto
|
||||
cryptonote_core
|
||||
${Boost_DATE_TIME_LIBRARY}
|
||||
${Boost_CHRONO_LIBRARY}
|
||||
${Boost_PROGRAM_OPTIONS_LIBRARY}
|
||||
${Boost_SERIALIZATION_LIBRARY}
|
||||
${LMDB_LIBRARY}
|
||||
|
||||
@@ -135,7 +135,7 @@ const unsigned int DB_BUFFER_LENGTH = 32 * MB;
|
||||
const unsigned int DB_DEF_CACHESIZE = 256 * MB;
|
||||
|
||||
#if defined(BDB_BULK_CAN_THREAD)
|
||||
const unsigned int DB_BUFFER_COUNT = std::thread::hardware_concurrency();
|
||||
const unsigned int DB_BUFFER_COUNT = boost::thread::hardware_concurrency();
|
||||
#else
|
||||
const unsigned int DB_BUFFER_COUNT = 1;
|
||||
#endif
|
||||
|
||||
@@ -130,7 +130,7 @@ public:
|
||||
|
||||
T acquire_buffer()
|
||||
{
|
||||
std::unique_lock<std::mutex> lock(m_lock);
|
||||
boost::unique_lock<boost::mutex> lock(m_lock);
|
||||
m_cv.wait(lock, [&]{ return m_count > 0; });
|
||||
|
||||
--m_count;
|
||||
@@ -154,7 +154,7 @@ public:
|
||||
|
||||
void release_buffer(T buffer)
|
||||
{
|
||||
std::unique_lock<std::mutex> lock(m_lock);
|
||||
boost::unique_lock<boost::mutex> lock(m_lock);
|
||||
|
||||
assert(buffer != nullptr);
|
||||
auto it = m_buffer_map.find(buffer);
|
||||
@@ -196,10 +196,10 @@ private:
|
||||
std::vector<T> m_buffers;
|
||||
std::unordered_map<T, size_t> m_buffer_map;
|
||||
|
||||
std::condition_variable m_cv;
|
||||
boost::condition_variable m_cv;
|
||||
std::vector<bool> m_open_slot;
|
||||
size_t m_count;
|
||||
std::mutex m_lock;
|
||||
boost::mutex m_lock;
|
||||
|
||||
size_t m_buffer_count;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user