ns-3 Direct Code Execution
API
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
dce-time.h
Go to the documentation of this file.
1 #ifndef SYS_DCE_TIME_H
2 #define SYS_DCE_TIME_H
3 
4 #include <sys/time.h>
5 
6 #ifdef __cplusplus
7 extern "C" {
8 #endif
9 
10 int dce_gettimeofday (struct timeval *tv, struct timezone *tz);
11 int dce_getitimer (int which, struct itimerval *value);
12 int dce_setitimer (int which, const struct itimerval *value,
13  struct itimerval *ovalue);
14 int dce_nanosleep (const struct timespec *req, struct timespec *rem);
15 
16 
17 #ifdef __cplusplus
18 }
19 #endif
20 
21 #endif /* SYS_DCE_TIME_H */