This is the mail archive of the newlib@sourceware.org mailing list for the newlib 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: [PATCH] Changes the default size of time_t to 64 bit.


On Aug 11 13:20, philipp.trommler@preh.de wrote:
> From: Philipp Trommler <philipp.trommler@preh.de>
> 
> This fixes the year 2038 problem by defining _TIME_T_ to either
> __int_least64_t, __int64_t, long (on 64 bit machines) or long long,
> depending on the available types.
> [...]
> diff --git a/newlib/libc/include/sys/_types.h b/newlib/libc/include/sys/_types.h
> index 98b93ce..09be6b0 100644
> --- a/newlib/libc/include/sys/_types.h
> +++ b/newlib/libc/include/sys/_types.h
> @@ -183,7 +183,22 @@ typedef void *_iconv_t;
>  #define	_CLOCK_T_	unsigned long	/* clock() */
>  typedef	_CLOCK_T_	__clock_t;
>  
> +#if defined(_USE_LONG_TIME_T)
> +/* User decided to use short time_t */

You know, this is kind of funny :)

You may want to clarify the discrepancy of USE_LONG vs. "use short"

>  #define	_TIME_T_	long		/* time() */

https://sourceware.org/ml/newlib/2017/msg00776.html


Corinna

-- 
Corinna Vinschen
Cygwin Maintainer
Red Hat

Attachment: signature.asc
Description: PGP signature


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