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 darwin
|
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
|
|
|
|
2016-08-10 18:53:55 +00:00
|
|
|
// note: this constant is not defined on BSD
|
2017-08-02 18:13:45 +00:00
|
|
|
const openMode = unix.O_EVTONLY
|