# Changelog
-## master / 2015-02-07
+## v1.2.0 / 2015-02-08
+* inotify: use epoll to wake up readEvents [#66](https://github.com/go-fsnotify/fsnotify/pull/66) (thanks @PieterD)
* inotify: closing watcher should now always shut down goroutine [#63](https://github.com/go-fsnotify/fsnotify/pull/63) (thanks @PieterD)
* kqueue: close kqueue after removing watches, fixes [#59](https://github.com/go-fsnotify/fsnotify/issues/59)
// Create a new inotify poller.
// This creates an inotify handler, and an epoll handler.
-func newFdPoller(fd int) (_ *fdPoller, errno error) {
+func newFdPoller(fd int) (*fdPoller, error) {
+ var errno error
poller := emptyPoller(fd)
defer func() {
if errno != nil {