Source File
open_file_linux.go
Belonging Package
github.com/tetratelabs/wazero/internal/sysfs
//go:build !tinygopackage sysfsimport ()const supportedSyscallOflag = sys.O_DIRECTORY | sys.O_DSYNC | sys.O_NOFOLLOW | sys.O_NONBLOCK | sys.O_RSYNCfunc withSyscallOflag( sys.Oflag, int) int {if &sys.O_DIRECTORY != 0 {|= syscall.O_DIRECTORY}if &sys.O_DSYNC != 0 {|= syscall.O_DSYNC}if &sys.O_NOFOLLOW != 0 {|= syscall.O_NOFOLLOW}if &sys.O_NONBLOCK != 0 {|= syscall.O_NONBLOCK}if &sys.O_RSYNC != 0 {|= syscall.O_RSYNC}return}
![]() |
The pages are generated with Golds v0.8.2. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |