]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
y2038: Introduce struct __utimbuf64 - new internal glibc type
authorLukasz Majewski <lukma@denx.de>
Thu, 6 Feb 2020 13:25:30 +0000 (14:25 +0100)
committerLukasz Majewski <lukma@denx.de>
Tue, 3 Mar 2020 13:28:08 +0000 (14:28 +0100)
This type is a glibc's "internal" type to store file's access and modification
times in __time64_t rather than __time_t, which makes it Y2038-proof.

Build tests:
./src/scripts/build-many-glibcs.py glibcs

Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Reviewed-by: Alistair Francis <alistair.francis@wdc.com>
include/time.h

index 61806658e730866bf67fe8069c7020f6007c73f5..0bb2bccf784f80142191ffe4ba29676f874b753d 100644 (file)
@@ -108,6 +108,18 @@ struct __timeval64
 };
 #endif
 
+#if __TIMESIZE == 64
+# define __utimbuf64 utimbuf
+#else
+/* The glibc Y2038-proof struct __utimbuf64 structure for file's access
+   and modification time values.  */
+struct __utimbuf64
+{
+  __time64_t actime;           /* Access time.  */
+  __time64_t modtime;          /* Modification time.  */
+};
+#endif
+
 #if __TIMESIZE == 64
 # define __ctime64 ctime
 #else