* Created ThreadBase holding poll manager, etc, and added a this_thread global object.

* Cleaned up main initialization, SCGI and polling code.

* Fixed a bug that would cause reading of a piece to hang if the incoming data contains only data up to the file boundary, but not the next file's data. The bug did not trigger if the file boundary and piece boundaries were the same.


git-svn-id: svn://rakshasa.no/libtorrent/trunk/rtorrent@1101 e378c898-3ddf-0310-93e7-cc216c733640
This commit is contained in:
rakshasa
2009-11-12 09:28:35 +00:00
parent a60c330d3b
commit 667c4c3562
25 changed files with 428 additions and 82 deletions
-3
View File
@@ -85,7 +85,6 @@ public:
View* hashing_view() { return m_hashingView; }
void set_hashing_view(View* v);
PollManager* get_poll_manager() { return m_pollManager; }
Log& get_log_important() { return m_logImportant; }
Log& get_log_complete() { return m_logComplete; }
@@ -97,7 +96,6 @@ public:
torrent::ThrottlePair get_address_throttle(const sockaddr* addr);
// Really should find a more descriptive name.
void initialize_first();
void initialize_second();
void cleanup();
@@ -153,7 +151,6 @@ private:
ThrottleMap m_throttles;
AddressThrottleMap m_addressThrottles;
PollManager* m_pollManager;
Log m_logImportant;
Log m_logComplete;
};