* Added support for using posix_fallocate on newly resized files.

git-svn-id: svn://rakshasa.no/libtorrent/trunk/rtorrent@1090 e378c898-3ddf-0310-93e7-cc216c733640
This commit is contained in:
rakshasa
2009-05-13 17:25:19 +00:00
parent 69d1c9700a
commit 05d7028f61
2 changed files with 8 additions and 1 deletions
+2
View File
@@ -165,6 +165,8 @@ initialize_command_local() {
ADD_COMMAND_VOID("system.hostname", rak::ptr_fun(&system_hostname));
ADD_COMMAND_VOID("system.pid", rak::ptr_fun(&getpid));
rpc::commands.call("system.method.insert", rpc::create_object_list("system.file_allocate", "value", (int64_t)0));
ADD_COMMAND_VOID("system.file_status_cache.size", rak::make_mem_fun((utils::FileStatusCache::base_type*)control->core()->file_status_cache(), &utils::FileStatusCache::size));
ADD_COMMAND_VOID("system.file_status_cache.prune", rak::make_mem_fun(control->core()->file_status_cache(), &utils::FileStatusCache::prune));
+6 -1
View File
@@ -215,7 +215,12 @@ DownloadList::open_throw(Download* download) {
if (download->download()->is_open())
return;
download->download()->open(download->resume_flags());
int openFlags = download->resume_flags();
if (rpc::call_command_value("system.file_allocate"))
openFlags |= torrent::Download::open_enable_fallocate;
download->download()->open(openFlags);
rpc::commands.call_catch("event.download.opened", rpc::make_target(download), torrent::Object(), "Download event action failed: ");
}