1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/genericopenlibs/openenvcore/include/sys/timespec.dosc Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,20 @@
1.4 +/** @file ../include/sys/timespec.h
1.5 +@internalComponent
1.6 +*/
1.7 +
1.8 +/** @struct timespec
1.9 +
1.10 +The struct timespec structure represents an elapsed time. It is declared in `time.h'
1.11 +Includes the following members,
1.12 +
1.13 +@publishedAll
1.14 +@externallyDefinedApi
1.15 +*/
1.16 +
1.17 +/** @var timespec::tv_sec
1.18 +This represents the number of whole seconds of elapsed time.
1.19 +*/
1.20 +
1.21 +/** @var timespec::tv_nsec
1.22 +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.
1.23 +*/