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
|
|
|
|
2016-08-10 18:53:55 +00:00
|
|
|
import "syscall"
|
2016-07-12 03:42:47 +00:00
|
|
|
|
2016-08-10 18:53:55 +00:00
|
|
|
// note: this constant is not defined on BSD
|
|
|
|
const openMode = syscall.O_EVTONLY
|