/usr/include/diet/sys/timerfd.h is in dietlibc-dev 0.33~cvs20120325-4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | #ifndef _SYS_TIMERFD_H
#define _SYS_TIMERFD_H
#include <time.h>
enum { TFD_TIMER_ABSTIME = 1 };
__BEGIN_DECLS
int timerfd_create (clockid_t clock_id, int flags) __THROW;
int timerfd_settime (int ufd, int flags, const struct itimerspec *utmr, struct itimerspec *otmr) __THROW;
int timerfd_gettime (int ufd, struct itimerspec *otmr) __THROW;
__END_DECLS
#endif
|