X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/4a6b0a991a67e6f2f67c03fed43529e078da7115..53dd673a07059d04f7ee5c280470958856fdf8d8:/src/s4u/s4u_file.cpp?ds=sidebyside diff --git a/src/s4u/s4u_file.cpp b/src/s4u/s4u_file.cpp index 23a63603ab..5da4b49e27 100644 --- a/src/s4u/s4u_file.cpp +++ b/src/s4u/s4u_file.cpp @@ -23,36 +23,36 @@ namespace s4u { File::File(const char*fullpath, void *userdata) { // this cannot fail because we get a xbt_die if the mountpoint does not exist - p_inferior = simcall_file_open(fullpath, Host::current()); - p_path = fullpath; + inferior_ = simcall_file_open(fullpath, Host::current()); + path_ = fullpath; } File::~File() { - simcall_file_close(p_inferior, Host::current()); + simcall_file_close(inferior_, Host::current()); } sg_size_t File::read(sg_size_t size) { - return simcall_file_read(p_inferior, size, Host::current()); + return simcall_file_read(inferior_, size, Host::current()); } sg_size_t File::write(sg_size_t size) { - return simcall_file_write(p_inferior,size, Host::current()); + return simcall_file_write(inferior_,size, Host::current()); } sg_size_t File::size() { - return simcall_file_get_size(p_inferior); + return simcall_file_get_size(inferior_); } void File::seek(sg_size_t pos) { - simcall_file_seek(p_inferior,pos,SEEK_SET); + simcall_file_seek(inferior_,pos,SEEK_SET); } sg_size_t File::tell() { - return simcall_file_tell(p_inferior); + return simcall_file_tell(inferior_); } void File::move(const char*fullpath) { - simcall_file_move(p_inferior,fullpath); + simcall_file_move(inferior_,fullpath); } void File::unlink() { sg_host_t attached = Host::current(); // FIXME: we should check where this file is attached - simcall_file_unlink(p_inferior,attached); + simcall_file_unlink(inferior_,attached); } }} // namespace simgrid::s4u