Changes in uspace/lib/c/include/sys/time.h [7f9d97f3:1ab8539] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/sys/time.h
r7f9d97f3 r1ab8539 50 50 51 51 struct tm { 52 int tm_usec; /* Microseconds [0,999999]. */53 52 int tm_sec; /* Seconds [0,60]. */ 54 53 int tm_min; /* Minutes [0,59]. */ … … 72 71 }; 73 72 74 extern void tv_add_diff(struct timeval *, suseconds_t); 75 extern void tv_add(struct timeval *, struct timeval *); 76 extern suseconds_t tv_sub_diff(struct timeval *, struct timeval *); 77 extern void tv_sub(struct timeval *, struct timeval *); 73 extern void tv_add(struct timeval *, suseconds_t); 74 extern suseconds_t tv_sub(struct timeval *, struct timeval *); 78 75 extern int tv_gt(struct timeval *, struct timeval *); 79 76 extern int tv_gteq(struct timeval *, struct timeval *); … … 82 79 83 80 extern void udelay(useconds_t); 84 extern int usleep(useconds_t);85 81 86 82 extern time_t mktime(struct tm *); … … 88 84 extern int time_utc2str(const time_t, char *); 89 85 extern void time_tm2str(const struct tm *, char *); 90 extern int time_tv2tm(const struct timeval *, struct tm *);91 86 extern int time_local2tm(const time_t, struct tm *); 92 87 extern int time_local2str(const time_t, char *);
Note:
See TracChangeset
for help on using the changeset viewer.