From: Linus Torvalds <torvalds@linux-foundation.org>
To: David Bryson <david@statichacks.org>
Cc: git@vger.kernel.org
Subject: Re: [PATCH 0/4] replace unsinged long with time_t
Date: Thu, 6 Nov 2008 10:13:46 -0800 (PST) [thread overview]
Message-ID: <alpine.LFD.2.00.0811061000430.3419@nehalem.linux-foundation.org> (raw)
In-Reply-To: <1225993728-4779-1-git-send-email-david@statichacks.org>
On Thu, 6 Nov 2008, david@statichacks.org wrote:
>
> Here is a patch set from the Janitor page to replace unsigned long with time_t.
I actually don't much like this.
"time_t" is one of those totally broken unix types. The standards say that
it's an "arithmetic" type, but leaves it open to be just about anything.
Traditionally, it's a signed integer (bad), and in theory it could even be
a floating point value, I think.
And in _all_ such cases, it's actually better to cast it to "unsigned
long" than keep time in a system-dependent format that is most likely
either _already_ "unsigned long", or alternatively broken.
IOW, "unsigned long" is practically always either the same, or better
than, time_t. Do you actually have a platform where that isn't the case?
And we do end up casting it to "unsigned long" in the end anyway - the
date format in the commit is fundamentally not a signed one, and we use
"%lu" to print those things. Again, if we were to use "time_t", we'd now
have a huge and fundamental confusion about how to print them out, and
what to do if they were negative.
So "time_t" really is a pretty damn worthless type. It's not _quite_ as
broken as "socklen_t" (which is just a broken name for "int", and anybody
who declares it to be anythign else is a total moron), but it's close.
In theory, some platform might have a 64-but "unsigned long long" time_t
even if the architecture is 32-bit (apparently windows used to do that if
you included <time64.h>, for example), but since we wouldn't take
advantage of that anyway, even then there is no real advantage.
Linus
next prev parent reply other threads:[~2008-11-06 18:15 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-11-06 17:48 [PATCH 0/4] replace unsinged long with time_t david
2008-11-06 17:48 ` [PATCH 1/4] Changed timestamps to time_t instead of unsigned david
2008-11-06 17:48 ` [PATCH 2/4] Changed timestamps to time_t in header files david
2008-11-06 17:48 ` [PATCH 3/4] Changed timestamps to time_t instead of unsigned long for approxidate() david
2008-11-06 17:48 ` [PATCH 4/4] Changed timestamps to time_t david
2008-11-06 18:13 ` Linus Torvalds [this message]
2008-11-06 18:37 ` [PATCH 0/4] replace unsinged long with time_t David Bryson
2008-11-06 18:45 ` Linus Torvalds
2008-11-06 21:04 ` Daniel Stenberg
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=alpine.LFD.2.00.0811061000430.3419@nehalem.linux-foundation.org \
--to=torvalds@linux-foundation.org \
--cc=david@statichacks.org \
--cc=git@vger.kernel.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox