From: 7heo@7heo.tk
To: xen-devel@lists.xen.org
Subject: Re: [PATCH] FIX: Cast the time_t values to avoid warnings
Date: Sun, 28 Apr 2013 00:27:29 +0200 [thread overview]
Message-ID: <20130427222729.GA32177@7heo.tk> (raw)
In-Reply-To: <20130427220349.GB29754@quantz>
On Sat, Apr 27, 2013 at 11:03:49PM +0100, Patrick Welche wrote:
> On Sat, Apr 27, 2013 at 11:32:35PM +0200, 7heo@7heo.tk wrote:
> > On Sat, Apr 27, 2013 at 09:18:03PM +0100, Patrick Welche wrote:
> > > On Sat, Apr 27, 2013 at 09:52:33PM +0200, 7heo wrote:
> > > > I added 4 casts from time_t to unsigned long int
> > > > in the libxl_sprintf functions, so there is no
> > > > warning at compilation time (and no failing with
> > > > -Werror).
> > > >
> > > > The casting format has been discuted, and since
> > > > there is no system having a 8 byte time_t format
> > > > yet; unsigned long int should be sufficient.
> > > > Also, it matches the libxl_sprintf syntax (%lu).
> > >
> > > I thought that earlier in the thread someone pointed
> > > out that unsigned long long would be a better plan?
> > > (long could just be 32 bits long)
> > >
> > > Cheers,
> > >
> > > Patrick
> >
> > As explained in the second paragraph of the git commit
> > message (even if I did a typo); this has been discussed
> > already.
>
> Is the typo in the part which says "since there is no system having
> a 8 byte time_t format yet", which should read "most systems which
> want to keep going beyond 2038 have 8 byte time_t format"?
> The box I'm sitting in front of certainly has sizeof(time_t)==8.
>
> The point is that all that is guaranteed is that
> sizeof(long long) >= sizeof(long) >= sizeof(int)
>
> Just checked on a 32-bit OS:
>
> % cat foo.c
> #include <stdio.h>
> #include <time.h>
>
> int main()
> {
> printf("time_t: %u int: %u long: %u long long: %u\n",
> sizeof(time_t), sizeof(int), sizeof(long), sizeof(long long));
>
> return 0;
> }
> % ./foo
> time_t: 8 int: 4 long: 4 long long: 8
>
> so long long is a better choice.
>
>
> Cheers,
>
> Patrick
Thanks for having taken the time to check. Then it would
maybe make sense to check the size of time_t at
compilation time (with cpp instructions) in order to
chose the cast that fits, wouldn't it?
Also, this surprises me, I wouldn't have imagined that
people would care about the 32bit time overflow before
2035...
Regards,
7heo.
next prev parent reply other threads:[~2013-04-27 22:27 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-04-27 19:52 [PATCH] FIX: Cast the time_t values to avoid warnings 7heo
2013-04-27 19:55 ` 7heo
2013-04-27 20:18 ` Patrick Welche
2013-04-27 21:32 ` 7heo
2013-04-27 22:03 ` Patrick Welche
2013-04-27 22:27 ` 7heo [this message]
2013-04-27 22:59 ` Alex Bligh
2013-04-27 23:15 ` 7heo
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20130427222729.GA32177@7heo.tk \
--to=7heo@7heo.tk \
--cc=xen-devel@lists.xen.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.