X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/3d3a632d7de077980120453b3863065bed65201c..acd555b41f9a71f6e3ed538f00d1e84fe6d19024:/include/simgrid/s4u/File.hpp diff --git a/include/simgrid/s4u/File.hpp b/include/simgrid/s4u/File.hpp index 189c70331a..d6cd734f67 100644 --- a/include/simgrid/s4u/File.hpp +++ b/include/simgrid/s4u/File.hpp @@ -52,7 +52,9 @@ public: sg_size_t size(); /** Sets the file head to the given position. */ - void seek(sg_size_t pos); + void seek(sg_offset_t pos); + void seek(sg_offset_t pos, int origin); + /** Retrieves the current file position */ sg_size_t tell(); @@ -62,8 +64,8 @@ public: void move(const char* fullpath); /** Remove a file from disk */ - void unlink(); - void unlink(sg_host_t host); + int unlink(); + int unlink(sg_host_t host); /* FIXME: add these to the S4U API: XBT_PUBLIC(const char *) MSG_file_get_name(msg_file_t file);