You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
prometheus/vendor/gopkg.in/fsnotify.v1
Fabian Reinartz 733ed099f5
vendor: update gopkg.in/fsnotify.v1
9 years ago
..
AUTHORS vendor: update gopkg.in/fsnotify.v1 9 years ago
CHANGELOG.md vendor: update gopkg.in/fsnotify.v1 9 years ago
CONTRIBUTING.md vendor: update gopkg.in/fsnotify.v1 9 years ago
LICENSE Vendoring via govendor 9 years ago
README.md vendor: update gopkg.in/fsnotify.v1 9 years ago
fen.go vendor: update gopkg.in/fsnotify.v1 9 years ago
fsnotify.go vendor: update gopkg.in/fsnotify.v1 9 years ago
inotify.go vendor: update gopkg.in/fsnotify.v1 9 years ago
inotify_poller.go vendor: update gopkg.in/fsnotify.v1 9 years ago
kqueue.go vendor: update gopkg.in/fsnotify.v1 9 years ago
open_mode_bsd.go vendor: update gopkg.in/fsnotify.v1 9 years ago
open_mode_darwin.go vendor: update gopkg.in/fsnotify.v1 9 years ago
windows.go vendor: update gopkg.in/fsnotify.v1 9 years ago

README.md

File system notifications for Go

GoDoc Go Report Card Coverage

fsnotify utilizes golang.org/x/sys rather than syscall from the standard library. Ensure you have the latest version installed by running:

go get -u golang.org/x/sys/...

Cross platform: Windows, Linux, BSD and OS X.

Adapter OS Status
inotify Linux 2.6.27 or later, Android* Supported Build Status
kqueue BSD, OS X, iOS* Supported Build Status
ReadDirectoryChangesW Windows Supported Build status
FSEvents OS X Planned
FEN Solaris 11 In Progress
fanotify Linux 2.6.37+
USN Journals Windows Maybe
Polling All Maybe

* Android and iOS are untested.

Please see the documentation for usage. Consult the Wiki for the FAQ and further information.

API stability

fsnotify is a fork of howeyc/fsnotify with a new API as of v1.0. The API is based on this design document.

All releases are tagged based on Semantic Versioning. Further API changes are planned, and will be tagged with a new major revision number.

Go 1.6 supports dependencies located in the vendor/ folder. Unless you are creating a library, it is recommended that you copy fsnotify into vendor/github.com/fsnotify/fsnotify within your project, and likewise for golang.org/x/sys.

Contributing

Please refer to CONTRIBUTING before opening an issue or pull request.

Example

See example_test.go.