github.com/tetratelabs/wazero@v1.2.1/internal/fsapi/constants_sun.go (about)

     1  //go:build illumos || solaris
     2  
     3  package fsapi
     4  
     5  import "syscall"
     6  
     7  // See https://github.com/illumos/illumos-gate/blob/edd580643f2cf1434e252cd7779e83182ea84945/usr/src/uts/common/sys/fcntl.h#L90
     8  const (
     9  	O_DIRECTORY = 0x1000000
    10  	O_NOFOLLOW  = syscall.O_NOFOLLOW
    11  	O_NONBLOCK  = syscall.O_NONBLOCK
    12  )