From d7dc9a47d59c44b8ec0e2bd3923b42d10ac37506 Mon Sep 17 00:00:00 2001 From: chrislu Date: Sun, 31 Aug 2025 12:25:41 -0700 Subject: add more posix tests --- test/fuse_integration/sendfile_darwin.go | 43 ++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 test/fuse_integration/sendfile_darwin.go (limited to 'test/fuse_integration/sendfile_darwin.go') diff --git a/test/fuse_integration/sendfile_darwin.go b/test/fuse_integration/sendfile_darwin.go new file mode 100644 index 000000000..38551bc6e --- /dev/null +++ b/test/fuse_integration/sendfile_darwin.go @@ -0,0 +1,43 @@ +//go:build darwin + +package fuse + +import ( + "syscall" + "unsafe" +) + +// Sendfile support for macOS + +func sendfileTransfer(outFd int, inFd int, offset *int64, count int) (int, error) { + // macOS sendfile has different signature: sendfile(in_fd, out_fd, offset, len, hdtr, flags) + var off int64 + if offset != nil { + off = *offset + } + + length := int64(count) + + _, _, errno := syscall.Syscall6(syscall.SYS_SENDFILE, + uintptr(inFd), // input fd + uintptr(outFd), // output fd + uintptr(off), // offset + uintptr(unsafe.Pointer(&length)), // length (in/out parameter) + 0, // hdtr (headers/trailers) + 0) // flags + + if errno != 0 { + return 0, errno + } + + // Update offset if provided + if offset != nil { + *offset += length + } + + return int(length), nil +} + +func isSendfileSupported() bool { + return true +} -- cgit v1.2.3