git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Defining timestamp_t as intmax_t instead of uintmax_t
@ 2025-03-11 10:00 Arnav Bhate
  2025-03-11 10:54 ` Arnav Bhate
  2025-03-11 17:28 ` Junio C Hamano
  0 siblings, 2 replies; 4+ messages in thread
From: Arnav Bhate @ 2025-03-11 10:00 UTC (permalink / raw)
  To: git

timestamp_t is a data type defined in git-compat-util.h as uintmax_t since
28f4aee3fb (use uintmax_t for timestamps, 2017-04-26). It was introduced with
dddbad728c (timestamp_t: a new data type for timestamps, 2017-04-26) to replace
use of both time_t and unsigned long for time-related uses.

On Linux with glibc[1] and on Windows with MSVC[2], time_t is always a signed
type. I think this is also the case on MacOS and FreeBSD. Thus, any conversion
or comparison between the two types is one between a signed and an unsigned
type. This also means git cannot deal with time before 1970, though I can't
think of a scenario where it will have to. However, it does it to sign
compare warnings from the compiler.

I propose swapping uintmax_t with intmax_t to fix this problem. I do not think
that this will cause any problem unless any code sets the most significant bit
of the timestamp for some special purpose. However, the fix will take some
work, considering the number of references to timestamp_t. So I want to get
everyone's opinions on whether this should be done before starting work on it.

[1] https://www.gnu.org/software/libc/manual/html_node/Time-Types.html
[2] https://learn.microsoft.com/en-us/cpp/c-runtime-library/standard-types?view=msvc-170
-- 
Regards,
Arnav Bhate
(He/Him)


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2025-03-11 18:23 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-03-11 10:00 Defining timestamp_t as intmax_t instead of uintmax_t Arnav Bhate
2025-03-11 10:54 ` Arnav Bhate
2025-03-11 17:28 ` Junio C Hamano
2025-03-11 18:23   ` Arnav Bhate

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).