2016-07-12 03:42:47 +00:00
|
|
|
// Copyright 2013 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2016-08-10 18:53:55 +00:00
|
|
|
// +build freebsd openbsd netbsd dragonfly
|
2016-07-12 03:42:47 +00:00
|
|
|
|
2016-08-10 18:53:55 +00:00
|
|
|
package fsnotify
|
2016-07-12 03:42:47 +00:00
|
|
|
|
2017-08-02 18:13:45 +00:00
|
|
|
import "golang.org/x/sys/unix"
|
2016-07-12 03:42:47 +00:00
|
|
|
|
2017-08-02 18:13:45 +00:00
|
|
|
const openMode = unix.O_NONBLOCK | unix.O_RDONLY
|