fix warnings in alert_manager and fix test_resolve_links for windows
This commit is contained in:
parent
d019f3d4c3
commit
2a3a34bf8d
|
@ -136,8 +136,8 @@ namespace libtorrent {
|
||||||
return m_alert_mask;
|
return m_alert_mask;
|
||||||
}
|
}
|
||||||
|
|
||||||
size_t alert_queue_size_limit() const { return m_queue_size_limit; }
|
int alert_queue_size_limit() const { return m_queue_size_limit; }
|
||||||
size_t set_alert_queue_size_limit(size_t queue_size_limit_);
|
int set_alert_queue_size_limit(int queue_size_limit_);
|
||||||
|
|
||||||
void set_notify_function(boost::function<void()> const& fun);
|
void set_notify_function(boost::function<void()> const& fun);
|
||||||
|
|
||||||
|
@ -162,7 +162,7 @@ namespace libtorrent {
|
||||||
mutable mutex m_mutex;
|
mutable mutex m_mutex;
|
||||||
condition_variable m_condition;
|
condition_variable m_condition;
|
||||||
boost::uint32_t m_alert_mask;
|
boost::uint32_t m_alert_mask;
|
||||||
size_t m_queue_size_limit;
|
int m_queue_size_limit;
|
||||||
|
|
||||||
#ifndef TORRENT_NO_DEPRECATE
|
#ifndef TORRENT_NO_DEPRECATE
|
||||||
bool maybe_dispatch(alert const& a);
|
bool maybe_dispatch(alert const& a);
|
||||||
|
|
|
@ -168,7 +168,7 @@ namespace libtorrent
|
||||||
return !m_alerts[m_generation].empty();
|
return !m_alerts[m_generation].empty();
|
||||||
}
|
}
|
||||||
|
|
||||||
size_t alert_manager::set_alert_queue_size_limit(size_t queue_size_limit_)
|
int alert_manager::set_alert_queue_size_limit(int queue_size_limit_)
|
||||||
{
|
{
|
||||||
mutex::scoped_lock lock(m_mutex);
|
mutex::scoped_lock lock(m_mutex);
|
||||||
|
|
||||||
|
|
|
@ -87,8 +87,8 @@ int test_main()
|
||||||
{
|
{
|
||||||
|
|
||||||
#ifndef TORRENT_DISABLE_MUTABLE_TORRENTS
|
#ifndef TORRENT_DISABLE_MUTABLE_TORRENTS
|
||||||
std::string path
|
std::string path = combine_path(parent_path(current_working_directory())
|
||||||
= combine_path("..", "mutable_test_torrents");
|
, "mutable_test_torrents");
|
||||||
|
|
||||||
for (int i = 0; i < sizeof(test_torrents)/sizeof(test_torrents[0]); ++i)
|
for (int i = 0; i < sizeof(test_torrents)/sizeof(test_torrents[0]); ++i)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue