diff options
author | Albert ARIBAUD (3ADEV) <albert.aribaud@3adev.fr> | 2018-10-24 11:34:26 +0200 |
---|---|---|
committer | Albert ARIBAUD (3ADEV) <albert.aribaud@3adev.fr> | 2018-10-24 11:37:09 +0200 |
commit | a27a4f4721837a5fb36ace833764b06a64c5af1c (patch) | |
tree | f19f1ff06c4a72abea5c16c7cd61aa47d28d3d04 /sysdeps/unix/sysv/linux/bits | |
parent | x86: Support RDTSCP for benchtests (diff) | |
download | glibc-a27a4f4721837a5fb36ace833764b06a64c5af1c.tar.gz glibc-a27a4f4721837a5fb36ace833764b06a64c5af1c.tar.bz2 glibc-a27a4f4721837a5fb36ace833764b06a64c5af1c.zip |
Y2038: provide size of default time_t for target architecture
To determine whether the default time_t interfaces are 32-bit
and so need conversions, or are 64-bit and so are compatible
with the internal 64-bit type without conversions, a macro
giving the size of the default time_t is also required.
This macro is called __TIMESIZE.
This macro can then be used instead of __WORDSIZE in msq-pad.h
and shm-pad.h files, which in turn allows removing their x86
variants, and in sem-pad.h files but keeping the x86 variant.
This patch was tested by running 'make check' on branch master
then applying this patch and running 'make check' again, and
checking that both 'make check' yield identical results.
This was done on x86_64-linux-gnu and i686-linux-gnu.
* bits/timesize.h: New file.
* stdlib/Makefile (headers): Add bits/timesize.h.
* sysdeps/unix/sysv/linux/bits/msq-pad.h
(__MSQ_PAD_AFTER_TIME): Use __TIMESIZE instead of __WORDSIZE.
* sysdeps/unix/sysv/linux/bits/sem-pad.h
(__SEM_PAD_AFTER_TIME): Likewise.
* sysdeps/unix/sysv/linux/bits/shm-pad.h
(__SHM_PAD_AFTER_TIME): Likewise.
* sysdeps/unix/sysv/linux/hppa/bits/msq-pad.h
(__MSQ_PAD_BEFORE_TIME): Likewise.
* sysdeps/unix/sysv/linux/hppa/bits/sem-pad.h
(__SEM_PAD_BEFORE_TIME): Likewise.
* sysdeps/unix/sysv/linux/hppa/bits/shm-pad.h
(__SHM_PAD_BEFORE_TIME, __SHM_PAD_BETWEEN_TIME_AND_SEGSZ): Likewise.
* sysdeps/unix/sysv/linux/mips/bits/msq-pad.h
(__MSQ_PAD_AFTER_TIME, __MSQ_PAD_BEFORE_TIME): Likewise.
* sysdeps/unix/sysv/linux/powerpc/bits/msq-pad.h
(__MSQ_PAD_BEFORE_TIME): Likewise.
* sysdeps/unix/sysv/linux/powerpc/bits/sem-pad.h
(__SEM_PAD_BEFORE_TIME): Likewise.
* sysdeps/unix/sysv/linux/powerpc/bits/shm-pad.h
(__SHM_PAD_BEFORE_TIME, __SHM_PAD_BETWEEN_TIME_AND_SEGSZ): Likewise.
* sysdeps/unix/sysv/linux/sparc/bits/msq-pad.h
(__MSQ_PAD_BEFORE_TIME): Likewise.
* sysdeps/unix/sysv/linux/sparc/bits/sem-pad.h
(__SEM_PAD_BEFORE_TIME): Likewise.
* sysdeps/unix/sysv/linux/sparc/bits/shm-pad.h
(__SHM_PAD_BEFORE_TIME): Likewise.
* sysdeps/unix/sysv/linux/x86/bits/msq-pad.h: Delete file.
* sysdeps/unix/sysv/linux/x86/bits/shm-pad.h: Likewise.
* sysdeps/unix/sysv/linux/x86/bits/timesize.h: New file.
Diffstat (limited to 'sysdeps/unix/sysv/linux/bits')
-rw-r--r-- | sysdeps/unix/sysv/linux/bits/msq-pad.h | 4 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/bits/sem-pad.h | 4 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/bits/shm-pad.h | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/sysdeps/unix/sysv/linux/bits/msq-pad.h b/sysdeps/unix/sysv/linux/bits/msq-pad.h index 97dee0beff..53f367dfa2 100644 --- a/sysdeps/unix/sysv/linux/bits/msq-pad.h +++ b/sysdeps/unix/sysv/linux/bits/msq-pad.h @@ -20,12 +20,12 @@ # error "Never use <bits/msq-pad.h> directly; include <sys/msg.h> instead." #endif -#include <bits/wordsize.h> +#include <bits/timesize.h> /* On most architectures, padding goes after time fields for 32-bit systems and is omitted for 64-bit systems. Some architectures pad before time fields instead, or omit padding despite being 32-bit. */ -#define __MSQ_PAD_AFTER_TIME (__WORDSIZE == 32) +#define __MSQ_PAD_AFTER_TIME (__TIMESIZE == 32) #define __MSQ_PAD_BEFORE_TIME 0 diff --git a/sysdeps/unix/sysv/linux/bits/sem-pad.h b/sysdeps/unix/sysv/linux/bits/sem-pad.h index c57fea4ac8..488b591d5a 100644 --- a/sysdeps/unix/sysv/linux/bits/sem-pad.h +++ b/sysdeps/unix/sysv/linux/bits/sem-pad.h @@ -20,7 +20,7 @@ # error "Never use <bits/sem-pad.h> directly; include <sys/sem.h> instead." #endif -#include <bits/wordsize.h> +#include <bits/timesize.h> /* On most architectures, padding goes after time fields for 32-bit systems and is omitted for 64-bit systems. Some architectures pad @@ -29,5 +29,5 @@ used for struct semid64_ds in <asm/sembuf.h>, as glibc does not do layout conversions for this structure. */ -#define __SEM_PAD_AFTER_TIME (__WORDSIZE == 32) +#define __SEM_PAD_AFTER_TIME (__TIMESIZE == 32) #define __SEM_PAD_BEFORE_TIME 0 diff --git a/sysdeps/unix/sysv/linux/bits/shm-pad.h b/sysdeps/unix/sysv/linux/bits/shm-pad.h index 9233c95a9f..d3cc5ebde6 100644 --- a/sysdeps/unix/sysv/linux/bits/shm-pad.h +++ b/sysdeps/unix/sysv/linux/bits/shm-pad.h @@ -20,7 +20,7 @@ # error "Never use <bits/shm-pad.h> directly; include <sys/shm.h> instead." #endif -#include <bits/wordsize.h> +#include <bits/timesize.h> /* On most architectures, padding goes after time fields for 32-bit systems and is omitted for 64-bit systems. Some architectures pad @@ -31,7 +31,7 @@ layout used for struct shmid64_ds in <asm/shmbuf.h>, as glibc does not do layout conversions for this structure. */ -#define __SHM_PAD_AFTER_TIME (__WORDSIZE == 32) +#define __SHM_PAD_AFTER_TIME (__TIMESIZE == 32) #define __SHM_PAD_BEFORE_TIME 0 #define __SHM_SEGSZ_AFTER_TIME 0 #define __SHM_PAD_BETWEEN_TIME_AND_SEGSZ 0 |