Document tv_sec is of type time_t:

The tv_sec is of type time_t in both struct timeval and struct timespec.
This matches the implementation and also the relevant standard (checked
C11 for timespec and opengroup for timeval).
This commit is contained in:
Rüdiger Sonderfeld 2015-02-12 14:51:31 -05:00 committed by Carlos O'Donell
parent 03d95bd483
commit 87a629c5d7
3 changed files with 9 additions and 3 deletions

View File

@ -1,3 +1,9 @@
2015-02-12 Rüdiger Sonderfeld <ruediger@c-plusplus.net>
[BZ #17965]
* manual/time.texi (Elapsed Time): tv_sec is of type time_t in
both struct timeval and struct timespec.
2015-02-12 Joseph Myers <joseph@codesourcery.com>
[BZ #16560]

2
NEWS
View File

@ -9,7 +9,7 @@ Version 2.22
* The following bugs are resolved with this release:
4719, 15467, 15790, 16560, 17912, 17932, 17944, 17949.
4719, 15467, 15790, 16560, 17912, 17932, 17944, 17949, 17965.
Version 2.21

View File

@ -104,7 +104,7 @@ The @code{struct timeval} structure represents an elapsed time. It is
declared in @file{sys/time.h} and has the following members:
@table @code
@item long int tv_sec
@item time_t tv_sec
This represents the number of whole seconds of elapsed time.
@item long int tv_usec
@ -123,7 +123,7 @@ The @code{struct timespec} structure represents an elapsed time. It is
declared in @file{time.h} and has the following members:
@table @code
@item long int tv_sec
@item time_t tv_sec
This represents the number of whole seconds of elapsed time.
@item long int tv_nsec