timer: set O_NONBLOCK on the timerfd
authorPeter Hutterer <peter.hutterer@who-t.net>
Thu, 30 Apr 2015 23:09:38 +0000 (09:09 +1000)
committerPeter Hutterer <peter.hutterer@who-t.net>
Thu, 30 Apr 2015 23:09:38 +0000 (09:09 +1000)
commitc2ef1854d82ebd6f484c59759f69dd30b4b3593b
tree9b485fdf8d268e2788246df0014cc20e37e934ba
parent28ed7a62653f1e257bba22b792ec785e9200d40e
timer: set O_NONBLOCK on the timerfd

Resetting a timerfd empties the data on the fd, so if the timer is reset
between triggering and us reading it, we may block trying to read it.

Since we read events off a device in a loop, a device sending a continuous
flow of events may cause the timer to trigger but delay reading it. If one of
the events cause e.g. the tap timer to be set, the timerfd may be empty at the
time of reading.

Suggested-by: Derek Foreman <derekf@osg.samsung.com>
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
src/timer.c