Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Tags: illarion/gonotify

Tags

v3.0.2

Toggle v3.0.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Update README.md

v3.0.1

Toggle v3.0.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Update README.md

v3.0.0

Toggle v3.0.0's commit message
Fixed missing calls to inotify_rm_watch, when removing watch descript…

…or either by id or by path; AddWatch() now returns watch descriptor

v2.0.8

Toggle v2.0.8's commit message
replaced syscall.Read(fd) with convenient go file.Read(); removed bus…

…y-reading

v2.0.7

Toggle v2.0.7's commit message
dirwatcher_test: avoid test-harness log race

Don't log after the test has completed

v2.0.6

Toggle v2.0.6's commit message
Fixes #5 - DirWatcher & FileWatcher have method Done(), allowing call…

…er to wait for finalization of internal goroutines

v2.0.5

Toggle v2.0.5's commit message
Fixes #5 - DirWatcher & FileWatcher now implement context.Context and…

… if the caller needs, one can wait for internal goroutines to finish

v2.0.4

Toggle v2.0.4's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Merge pull request #6 from akemrir/dont-send-to-closed-channel

Panics when sending to closed channel

v2.0.3

Toggle v2.0.3's commit message
Fixed potential incomplete read of inotify events in case of many con…

…current events with long (more than 16 chars) file names; Fixed potential missing events; Fixed 0 reads caused by select() fired with unset fdset; Fixed potential context leaks

v2.0.2

Toggle v2.0.2's commit message
Fixed potential concurrent memory access issue in inotify.go, replace…

…d guard mutex with channels