mirror of
https://git.FreeBSD.org/src.git
synced 2025-02-06 18:29:47 +00:00
030e2e9ebb
/* * 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 <jdrobina@infinet.com>