rakshasa / libtorrent

libTorrent BitTorrent library
http://rtorrent.net/downloads/
GNU General Public License v2.0
883 stars 210 forks source link

Replace usleep with C++11's sleep_for #201

Open neheb opened 4 years ago

neheb commented 4 years ago

usleep is deprecated and replaced by nanosleep in POSIX 2008.

sleep_for is standard C++11 and internally uses nanosleep.

neheb commented 4 years ago

Build failure seems unrelated.

neheb commented 4 years ago

Rebased.