Loading src/client/gkfs_libc.cpp +2 −2 Original line number Diff line number Diff line Loading @@ -844,14 +844,14 @@ lseek64(int fd, off64_t offset, int whence) { } ssize_t pread64(int fd, void* buf, size_t count, off_t offset) { pread64(int fd, void* buf, size_t count, off64_t offset) { initializeGekko(); GKFS_OPERATION(pread, fd, buf, count, offset); GKFS_FALLBACK(pread64, fd, buf, count, offset); } ssize_t pwrite64(int fd, const void* buf, size_t count, off_t offset) { pwrite64(int fd, const void* buf, size_t count, off64_t offset) { initializeGekko(); GKFS_OPERATION(pwrite, fd, buf, count, offset); GKFS_FALLBACK(pwrite64, fd, buf, count, offset); Loading Loading
src/client/gkfs_libc.cpp +2 −2 Original line number Diff line number Diff line Loading @@ -844,14 +844,14 @@ lseek64(int fd, off64_t offset, int whence) { } ssize_t pread64(int fd, void* buf, size_t count, off_t offset) { pread64(int fd, void* buf, size_t count, off64_t offset) { initializeGekko(); GKFS_OPERATION(pread, fd, buf, count, offset); GKFS_FALLBACK(pread64, fd, buf, count, offset); } ssize_t pwrite64(int fd, const void* buf, size_t count, off_t offset) { pwrite64(int fd, const void* buf, size_t count, off64_t offset) { initializeGekko(); GKFS_OPERATION(pwrite, fd, buf, count, offset); GKFS_FALLBACK(pwrite64, fd, buf, count, offset); Loading