2014-07-06 21:18:00 +02:00
|
|
|
#ifndef TORRENT_PLATFORM_UTIL_HPP
|
|
|
|
#define TORRENT_PLATFORM_UTIL_HPP
|
|
|
|
|
|
|
|
#include <boost/cstdint.hpp>
|
|
|
|
|
|
|
|
namespace libtorrent
|
|
|
|
{
|
2015-12-02 06:45:34 +01:00
|
|
|
int max_open_files();
|
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
boost::uint64_t total_physical_ram();
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // TORRENT_PLATFORM_UTIL_HPP
|
|
|
|
|