timerfd.h 299 B

123456789101112131415161718
  1. #ifndef _SYS_TIMERFD_H
  2. #define _SYS_TIMERFD_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. #include <time.h>
  7. int timerfd_create(int, int);
  8. int timerfd_settime(int, int, const struct itimerspec *, struct itimerspec *);
  9. int timerfd_gettime(int, struct itimerspec *);
  10. #ifdef __cplusplus
  11. }
  12. #endif
  13. #endif