From 87a629c5d7aa559e5c144196bce123469b17af4c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=BCdiger=20Sonderfeld?= Date: Thu, 12 Feb 2015 14:51:31 -0500 Subject: 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). --- manual/time.texi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'manual') diff --git a/manual/time.texi b/manual/time.texi index 8a5f94ed81..a7bf156a79 100644 --- a/manual/time.texi +++ b/manual/time.texi @@ -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 -- cgit v1.2.1