os/ossrv/genericopenlibs/openenvcore/include/sys/timespec.dosc
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /** @file  ../include/sys/timespec.h
     2 @internalComponent
     3 */
     4 
     5 /** @struct timespec
     6 
     7 The struct timespec structure represents an elapsed time. It is declared in `time.h'
     8 Includes the following members,
     9 
    10 @publishedAll
    11 @externallyDefinedApi
    12 */
    13 
    14 /** @var timespec::tv_sec
    15 This represents the number of whole seconds of elapsed time.
    16 */
    17 
    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 */