Files
wazero/internal/fsapi/constants_sun.go
Crypt Keeper 34324031cb extracts FS interfaces into fsapi package and consolidates impls (#1477)
Signed-off-by: Adrian Cole <adrian@tetrate.io>
Signed-off-by: Edoardo Vacchi <evacchi@users.noreply.github.com>
Co-authored-by: Edoardo Vacchi <evacchi@users.noreply.github.com>
2023-05-17 07:19:54 +03:00

13 lines
295 B
Go

//go:build illumos || solaris
package fsapi
import "syscall"
// See https://github.com/illumos/illumos-gate/blob/edd580643f2cf1434e252cd7779e83182ea84945/usr/src/uts/common/sys/fcntl.h#L90
const (
O_DIRECTORY = 0x1000000
O_NOFOLLOW = syscall.O_NOFOLLOW
O_NONBLOCK = syscall.O_NONBLOCK
)