summaryrefslogtreecommitdiff
path: root/vendor/github.com/tetratelabs/wazero/internal/sysfs/open_file_darwin.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/tetratelabs/wazero/internal/sysfs/open_file_darwin.go')
-rw-r--r--vendor/github.com/tetratelabs/wazero/internal/sysfs/open_file_darwin.go26
1 files changed, 0 insertions, 26 deletions
diff --git a/vendor/github.com/tetratelabs/wazero/internal/sysfs/open_file_darwin.go b/vendor/github.com/tetratelabs/wazero/internal/sysfs/open_file_darwin.go
deleted file mode 100644
index a4f54ca2c..000000000
--- a/vendor/github.com/tetratelabs/wazero/internal/sysfs/open_file_darwin.go
+++ /dev/null
@@ -1,26 +0,0 @@
-package sysfs
-
-import (
- "syscall"
-
- "github.com/tetratelabs/wazero/experimental/sys"
-)
-
-const supportedSyscallOflag = sys.O_DIRECTORY | sys.O_DSYNC | sys.O_NOFOLLOW | sys.O_NONBLOCK
-
-func withSyscallOflag(oflag sys.Oflag, flag int) int {
- if oflag&sys.O_DIRECTORY != 0 {
- flag |= syscall.O_DIRECTORY
- }
- if oflag&sys.O_DSYNC != 0 {
- flag |= syscall.O_DSYNC
- }
- if oflag&sys.O_NOFOLLOW != 0 {
- flag |= syscall.O_NOFOLLOW
- }
- if oflag&sys.O_NONBLOCK != 0 {
- flag |= syscall.O_NONBLOCK
- }
- // syscall.O_RSYNC not defined on darwin
- return flag
-}