X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/60f34207bab74f1dca91bdf6aae807b9006e7474..db9ef2223acb402e44eec406541e671bfebd5ade:/src/plugins/file_system/s4u_FileSystem.cpp?ds=sidebyside diff --git a/src/plugins/file_system/s4u_FileSystem.cpp b/src/plugins/file_system/s4u_FileSystem.cpp index be2ab2b331..98acd5957a 100644 --- a/src/plugins/file_system/s4u_FileSystem.cpp +++ b/src/plugins/file_system/s4u_FileSystem.cpp @@ -386,6 +386,11 @@ std::map>* FileSystemDiskExt::parse_content( return parse_content; } +void FileSystemDiskExt::add_remote_mount(Host* host, const std::string& mount_point) +{ + remote_mount_points_.try_emplace(host, mount_point); +} + void FileSystemDiskExt::decr_used_size(sg_size_t size) { simgrid::kernel::actor::simcall_answered([this, size] { used_size_ -= size; });