Files
wazero/internal/sysfs/file_unix.go
Crypt Keeper 1dafce0b2a sysfs: cleanup windows rename (#1584)
Signed-off-by: Adrian Cole <adrian@tetrate.io>
2023-07-16 07:57:05 +08:00

22 lines
420 B
Go

//go:build unix || darwin || linux
package sysfs
import (
"syscall"
"github.com/tetratelabs/wazero/internal/platform"
)
const nonBlockingFileIoSupported = true
// readFd exposes syscall.Read.
func readFd(fd uintptr, buf []byte) (int, syscall.Errno) {
if len(buf) == 0 {
return 0, 0 // Short-circuit 0-len reads.
}
n, err := syscall.Read(int(fd), buf)
errno := platform.UnwrapOSError(err)
return n, errno
}