ns-3 Direct Code Execution
API
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
dce-timerfd.h
Go to the documentation of this file.
1 #ifndef DCE_TIMERFD_H
2 #define DCE_TIMERFD_H
3 
4 #include <sys/timerfd.h>
5 
6 #ifdef __cplusplus
7 extern "C" {
8 #endif
9 
10 int dce_timerfd_create (int clockid, int flags);
11 int dce_timerfd_settime (int fd, int flags,
12  const struct itimerspec *new_value,
13  struct itimerspec *old_value);
14 int dce_timerfd_gettime (int fd, struct itimerspec *curr_value);
15 
16 
17 #ifdef __cplusplus
18 }
19 #endif
20 
21 #endif /* DCE_TIMERFD_H */