You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add timerfd API on Linux
This change adds the Linux-specific timerfd API to libc.
```C
#include <sys/timerfd.h>
int timerfd_create(int clockid, int flags);
int timerfd_gettime(int fd, struct itimerspec *curr_value);
int timerfd_settime(int fd, int flags,
const struct itimerspec *new_value,
struct itimerspec *old_value);
```
The timerfd API has been available since kernel 2.6.25 and in glibc since version 2.8.
I'm not sure if I put the changes in the right places, so please review with great care.
pdietl
pushed a commit
to pdietl/rust
that referenced
this issue
Apr 23, 2020
becomes
The text was updated successfully, but these errors were encountered: