about summary refs log tree commit diff
path: root/sysdeps/x86
diff options
context:
space:
mode:
authorFlorian Weimer <fweimer@redhat.com>2024-04-19 14:38:17 +0200
committerFlorian Weimer <fweimer@redhat.com>2024-04-19 14:38:17 +0200
commit9abdae94c7454c45e02e97e4ed1eb1b1915d13d8 (patch)
tree859aab3bfb1c866f6350c83fc46e98c381877422 /sysdeps/x86
parent4d4da5aab936504b2d3eca3146e109630d9093c4 (diff)
downloadglibc-9abdae94c7454c45e02e97e4ed1eb1b1915d13d8.tar.gz
glibc-9abdae94c7454c45e02e97e4ed1eb1b1915d13d8.tar.xz
glibc-9abdae94c7454c45e02e97e4ed1eb1b1915d13d8.zip
login: structs utmp, utmpx, lastlog _TIME_BITS independence (bug 30701)
These structs describe file formats under /var/log, and should not
depend on the definition of _TIME_BITS.  This is achieved by
defining __WORDSIZE_TIME64_COMPAT32 to 1 on 32-bit ports that
support 32-bit time_t values (where __time_t is 32 bits).

Reviewed-by: Adhemerval Zanella  <adhemerval.zanella@linaro.org>
Diffstat (limited to 'sysdeps/x86')
-rw-r--r--sysdeps/x86/bits/wordsize.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/sysdeps/x86/bits/wordsize.h b/sysdeps/x86/bits/wordsize.h
index 70f652bca1..3f40aa76f9 100644
--- a/sysdeps/x86/bits/wordsize.h
+++ b/sysdeps/x86/bits/wordsize.h
@@ -8,10 +8,9 @@
 #define __WORDSIZE32_PTRDIFF_LONG	0
 #endif
 
+#define __WORDSIZE_TIME64_COMPAT32 1
+
 #ifdef __x86_64__
-# define __WORDSIZE_TIME64_COMPAT32	1
 /* Both x86-64 and x32 use the 64-bit system call interface.  */
 # define __SYSCALL_WORDSIZE		64
-#else
-# define __WORDSIZE_TIME64_COMPAT32	0
 #endif