K 10 svn:author V 4 nate K 8 svn:date V 27 1996-09-19T18:21:32.000000Z K 7 svn:log V 409 In sys/time.h, struct timespec is defined as: /* * Structure defined by POSIX.4 to be like a timeval. */ struct timespec { time_t ts_sec; /* seconds */ long ts_nsec; /* and nanoseconds */ }; The correct names of the fields are tv_sec and tv_nsec. Reminded by: James Drobina END