fix deconstructor order issue
This commit is contained in:
parent
a54432d0cf
commit
a45c49d037
|
@ -371,12 +371,6 @@ namespace libtorrent
|
||||||
|
|
||||||
void on_lsd_peer(tcp::endpoint peer, sha1_hash const& ih);
|
void on_lsd_peer(tcp::endpoint peer, sha1_hash const& ih);
|
||||||
|
|
||||||
// handles disk io requests asynchronously
|
|
||||||
// peers have pointers into the disk buffer
|
|
||||||
// pool, and must be destructed before this
|
|
||||||
// object.
|
|
||||||
disk_io_thread m_disk_thread;
|
|
||||||
|
|
||||||
// this pool is used to allocate and recycle send
|
// this pool is used to allocate and recycle send
|
||||||
// buffers from.
|
// buffers from.
|
||||||
boost::pool<> m_send_buffers;
|
boost::pool<> m_send_buffers;
|
||||||
|
@ -395,6 +389,12 @@ namespace libtorrent
|
||||||
// when they are destructed.
|
// when they are destructed.
|
||||||
file_pool m_files;
|
file_pool m_files;
|
||||||
|
|
||||||
|
// handles disk io requests asynchronously
|
||||||
|
// peers have pointers into the disk buffer
|
||||||
|
// pool, and must be destructed before this
|
||||||
|
// object.
|
||||||
|
disk_io_thread m_disk_thread;
|
||||||
|
|
||||||
// this is a list of half-open tcp connections
|
// this is a list of half-open tcp connections
|
||||||
// (only outgoing connections)
|
// (only outgoing connections)
|
||||||
// this has to be one of the last
|
// this has to be one of the last
|
||||||
|
|
Loading…
Reference in New Issue