X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/c1b3e440de2150420b08c0bc55a125a0c9eb86bc..9e3b2f1d55a07271c05db2ed5b3fec27561097f9:/include/simgrid/plugins/file_system.h diff --git a/include/simgrid/plugins/file_system.h b/include/simgrid/plugins/file_system.h index c6d52d8198..0df1458397 100644 --- a/include/simgrid/plugins/file_system.h +++ b/include/simgrid/plugins/file_system.h @@ -112,7 +112,7 @@ public: sg_size_t tell(); /** Retrieves the current file position */ /** Rename a file. WARNING: It is forbidden to move the file to another mount point */ - void move(std::string fullpath); + void move(const std::string& fullpath); int remote_copy(sg_host_t host, const char* fullpath); int remote_move(sg_host_t host, const char* fullpath); @@ -136,7 +136,7 @@ public: static simgrid::xbt::Extension EXTENSION_ID; explicit FileSystemStorageExt(Storage* ptr); ~FileSystemStorageExt(); - std::map* parse_content(std::string filename); + std::map* parse_content(const std::string& filename); std::map* get_content() { return content_; } sg_size_t get_size() { return size_; } sg_size_t get_used_size() { return used_size_; }