Sha256: 04674aad4b6d19129dccbf283762c8d36c8eb5e7a0fa0aa6964a94dab45e60c2
Contents?: true
Size: 410 Bytes
Versions: 5
Compression:
Stored size: 410 Bytes
Contents
#ifndef _SYS_TIMERFD_H #define _SYS_TIMERFD_H #ifdef __cplusplus extern "C" { #endif #include <time.h> #include <fcntl.h> #define TFD_NONBLOCK O_NONBLOCK #define TFD_CLOEXEC O_CLOEXEC #define TFD_TIMER_ABSTIME 1 int timerfd_create(int, int); int timerfd_settime(int, int, const struct itimerspec *, struct itimerspec *); int timerfd_gettime(int, struct itimerspec *); #ifdef __cplusplus } #endif #endif
Version data entries
5 entries across 5 versions & 1 rubygems