2021-12-08 13:50:47 +00:00
|
|
|
//go:build freebsd || openbsd || netbsd || dragonfly
|
2021-06-04 08:59:18 +00:00
|
|
|
// +build freebsd openbsd netbsd dragonfly
|
|
|
|
|
|
|
|
package fsnotify
|
|
|
|
|
|
|
|
import "golang.org/x/sys/unix"
|
|
|
|
|
|
|
|
const openMode = unix.O_NONBLOCK | unix.O_RDONLY | unix.O_CLOEXEC
|