X-Spam-Check-By: sourceware.org Date: Sun, 12 Feb 2006 14:06:11 +0100 From: Corinna Vinschen To: cygwin AT cygwin DOT com Subject: Re: 1.5.19: timeval struct not correct defined Message-ID: <20060212130611.GV14219@calimero.vinschen.de> Reply-To: cygwin AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com References: <02c301c62f3d$4600b5c0$c100020a AT jw2500> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <02c301c62f3d$4600b5c0$c100020a@jw2500> User-Agent: Mutt/1.4.2i Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm Precedence: bulk List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com 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/