Next: linux inotify, Previous: linux signalfd, Up: linux [Index]
The timerfd
API transforms timer expiration events into file
descriptor events, this way we can code event loops using select
or epoll
and a uniform interface for timer and input/output
events. For the full documentation see the following manual pages:
timerfd_create(2)
, timerfd_settime(2)
,
timerfd_gettime(2)
.
• linux timerfd intro: | Introduction to the timerfd API.
| |
• linux timerfd api: | The timerfd API.
| |
• linux timerfd examples: | Usage examples of the timerfd API.
|