This is the mail archive of the cygwin mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: 1.5.19: timeval struct not correct defined


On Feb 11 19:59, Johnny Willemsen wrote:
> Hi,
> 
> In sys/time.h the timeval struct is defined as:
> 
> struct timeval {
>   long tv_sec;
>   long tv_usec;
> };
> 
> It should be 
> 
> struct timeval {
>   time_t tv_sec;
>   suseconds_t tv_usec;
> };
> 
> See the following link for the opengroup standard
> http://www.opengroup.org/onlinepubs/007908799/xsh/systime.h.html
> 
> The type suseconds_t and useconds_t are also not there with Cygwin

useconds_t is defined in sys/types.h, though as signed type, not as
unsigned type as proposed by SUSv3.

As for the other types, I'll prepare a patch for newlib's header files.


Thanks,
Corinna

-- 
Corinna Vinschen                  Please, send mails regarding Cygwin to
Cygwin Project Co-Leader          cygwin AT cygwin DOT com
Red Hat

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]