X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/27bc638264dd51e923f178492902c91ed51baf77..b283430cb109f0ef78eaeba48f8942b512c659d2:/src/s4u/s4u_file.cpp diff --git a/src/s4u/s4u_file.cpp b/src/s4u/s4u_file.cpp index a60d35fc30..043f6d5d8d 100644 --- a/src/s4u/s4u_file.cpp +++ b/src/s4u/s4u_file.cpp @@ -43,7 +43,8 @@ File::File(const char* fullpath, sg_host_t host, void* userdata) : path_(fullpat } else xbt_die("Can't find mount point for '%s' on '%s'", fullpath, host->getCname()); - pimpl_ = simcall_file_open(mount_point.c_str(), path.c_str(), st); + pimpl_ = + simgrid::simix::kernelImmediate([this, st, path] { return new simgrid::surf::FileImpl(st, path, mount_point); }); storage_type = st->getType(); storageId = st->getName(); } @@ -55,17 +56,12 @@ File::~File() sg_size_t File::read(sg_size_t size) { - return simcall_file_read(pimpl_, size, Host::current()); + return simcall_file_read(pimpl_, size); } sg_size_t File::write(sg_size_t size) { - return simcall_file_write(pimpl_,size, Host::current()); -} - -sg_size_t File::write(sg_size_t size, sg_host_t host) -{ - return simcall_file_write(pimpl_, size, host); + return simcall_file_write(pimpl_, size); } sg_size_t File::size() @@ -90,18 +86,12 @@ sg_size_t File::tell() void File::move(const char* fullpath) { - sg_host_t host = Host::current(); - simgrid::simix::kernelImmediate([this, host, fullpath] { pimpl_->move(host, fullpath); }); + simgrid::simix::kernelImmediate([this, fullpath] { pimpl_->move(fullpath); }); } int File::unlink() { - return unlink(Host::current()); -} - -int File::unlink(sg_host_t host) -{ - return simgrid::simix::kernelImmediate([this, host] { return pimpl_->unlink(host); }); + return simgrid::simix::kernelImmediate([this] { return pimpl_->unlink(); }); } }} // namespace simgrid::s4u