#include <sys/types.h>Go to the source code of this file.
Data Structures | |
| struct | timeval |
| struct | timezone |
Defines | |
| #define | DST_NONE 0 |
Typedefs | |
| typedef uint32_t | mseconds_t |
| typedef long | suseconds_t |
| typedef long | time_t |
| typedef uint32_t | useconds_t |
Functions | |
| int | gettimeofday (struct timeval *tv, struct timezone *tz) |
| Get time of day. | |
| void | tv_add (struct timeval *tv, suseconds_t usecs) |
| Add microseconds to given timeval. | |
| int | tv_gt (struct timeval *tv1, struct timeval *tv2) |
| Decide if one timeval is greater than the other. | |
| int | tv_gteq (struct timeval *tv1, struct timeval *tv2) |
| Decide if one timeval is greater than or equal to the other. | |
| suseconds_t | tv_sub (struct timeval *tv1, struct timeval *tv2) |
| Subtract two timevals. | |
| void | udelay (useconds_t time) |
Definition in file time.h.
1.4.7