sleepy_penguin 2.0.0v2.0.0
commitcdebfac019b5e771f7babc5646a3c7961729eaca
authorEric Wong <normalperson@yhbt.net>
Thu, 10 Mar 2011 04:35:41 +0000 (10 04:35 +0000)
committerEric Wong <normalperson@yhbt.net>
Thu, 10 Mar 2011 04:43:29 +0000 (10 04:43 +0000)
tree1eadca1d110f8a2b97503d27b85de12220440c20
parentd76fe634dfb3ed40b2ff02307963ac38d731d54e
sleepy_penguin 2.0.0

There are many internal cleanups, bugfixes, and incompatible
API changes.  The API will probably be stable from now on.

All the flag passing is less verbose, in the past you had
to do:

tfd = TimerFD.new(TimerFD::CLOEXEC|TimerFD::NONBLOCK)

Now, you can just do (the old way still works):

tfd = TimerFD.new([:CLOEXEC, :NONBLOCK])

A SignalFD interface now exists, but is not recommended since
MRI signal handling seems to conflict with it.

Inotify#close no longer holds the GVL while closing the
descriptor since it is an expensive operation.

See git log v1.4.0..v2.0.0 for all the gory details.
GIT-VERSION-GEN