author | sl |
Tue, 10 Jun 2014 14:32:02 +0200 | |
changeset 1 | 260cb5ec6c19 |
permissions | -rw-r--r-- |
1 /** @file ../include/sys/timespec.h
2 @internalComponent
3 */
5 /** @struct timespec
7 The struct timespec structure represents an elapsed time. It is declared in `time.h'
8 Includes the following members,
10 @publishedAll
11 @externallyDefinedApi
12 */
14 /** @var timespec::tv_sec
15 This represents the number of whole seconds of elapsed time.
16 */
18 /** @var timespec::tv_nsec
19 This is the rest of the elapsed time (a fraction of a second), represented as the number of nanoseconds. It is always less than one billion.
20 */