mirror of https://git.musl-libc.org/git/musl
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
299 B
19 lines
299 B
|
14 years ago
|
#ifndef _SYS_TIMERFD_H
|
||
|
|
#define _SYS_TIMERFD_H
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
extern "C" {
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#include <time.h>
|
||
|
|
|
||
|
|
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
|