factor out code from alert_manager::should_post template into non-template (#1089)

This commit is contained in:
Arvid Norberg 2016-09-13 22:45:39 -04:00 committed by GitHub
parent 224ebc1ded
commit 392726a2a9
2 changed files with 9 additions and 6 deletions

View File

@ -84,16 +84,11 @@ namespace libtorrent {
{
if ((m_alert_mask.load(std::memory_order_relaxed)
& T::static_category) == 0)
return false;
std::lock_guard<std::mutex> lock(m_mutex);
if (m_alerts[m_generation].size() >= m_queue_size_limit
* (1 + T::priority))
{
return false;
}
return true;
return should_post_impl(T::priority);
}
alert* wait_for_alert(time_duration max_wait);
@ -123,6 +118,7 @@ namespace libtorrent {
alert_manager(alert_manager const&);
alert_manager& operator=(alert_manager const&);
bool should_post_impl(int priority) const;
void maybe_notify(alert* a, std::unique_lock<std::mutex>& lock);
mutable std::mutex m_mutex;

View File

@ -49,6 +49,13 @@ namespace libtorrent
alert_manager::~alert_manager() = default;
bool alert_manager::should_post_impl(int const priority) const
{
std::lock_guard<std::mutex> lock(m_mutex);
return m_alerts[m_generation].size()
< m_queue_size_limit * (1 + priority);
}
alert* alert_manager::wait_for_alert(time_duration max_wait)
{
std::unique_lock<std::mutex> lock(m_mutex);