Search notes:

timespec

struct timespec {
   time_t      tv_sec;   // Number of whole seconds of elapsed time
   long int    tv_nsec;  // Number of nanosecods of rest of elapsed time minus tv_sec. Always less than one billion.
};
struct timeval {
};

See also

struct timeval
libc: Date and time

Index