Changes in uspace/lib/c/include/sys/time.h [0a0dff8:5a6cc679] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/sys/time.h
r0a0dff8 r5a6cc679 69 69 }; 70 70 71 #define TIMEVAL_MAX ((struct timeval) { .tv_sec = LONG_MAX, .tv_usec = 999999 })72 73 71 struct timezone { 74 72 int tz_minuteswest; /* minutes W of Greenwich */ … … 77 75 78 76 extern void tv_add_diff(struct timeval *, suseconds_t); 79 extern void tv_add(struct timeval *, conststruct timeval *);80 extern suseconds_t tv_sub_diff( const struct timeval *, conststruct timeval *);81 extern void tv_sub(struct timeval *, conststruct timeval *);82 extern int tv_gt( const struct timeval *, conststruct timeval *);83 extern int tv_gteq( const struct timeval *, conststruct timeval *);77 extern void tv_add(struct timeval *, struct timeval *); 78 extern suseconds_t tv_sub_diff(struct timeval *, struct timeval *); 79 extern void tv_sub(struct timeval *, struct timeval *); 80 extern int tv_gt(struct timeval *, struct timeval *); 81 extern int tv_gteq(struct timeval *, struct timeval *); 84 82 extern void gettimeofday(struct timeval *, struct timezone *); 85 83 extern void getuptime(struct timeval *);
Note:
See TracChangeset
for help on using the changeset viewer.