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]

1.5.19: timeval struct not correct defined


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

Regards,

Johnny Willemsen
Remedy IT
Postbus 101
2650 AC  Berkel en Rodenrijs
The Netherlands
www.theaceorb.nl / www.remedy.nl  


--
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]