예제 #1
0
 private unsafe int Fsync(path *path, fuse_file_info *fi)
 {
     try
     {
         return(_fileSystem.FSync(ToSpan(path), ref ToFileInfoRef(fi)));
     }
     catch
     {
         return(-EIO);
     }
 }