diff options
author | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2021-12-16 13:42:31 -0300 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2021-12-28 14:57:57 -0300 |
commit | 92ff345137bfc9e1ecf23c604b7022a25e36cb32 (patch) | |
tree | 04f3e061f90476f45bd2568ba93d66e9cb7396dc /sysdeps/mips | |
parent | 5a5f7a160da6ac3d141013e9a08f78edc216e434 (diff) | |
download | glibc-92ff345137bfc9e1ecf23c604b7022a25e36cb32.tar.gz glibc-92ff345137bfc9e1ecf23c604b7022a25e36cb32.tar.xz glibc-92ff345137bfc9e1ecf23c604b7022a25e36cb32.zip |
Remove atomic-machine.h atomic typedefs
Now that memusage.c uses generic types we can remove them.
Diffstat (limited to 'sysdeps/mips')
-rw-r--r-- | sysdeps/mips/atomic-machine.h | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/sysdeps/mips/atomic-machine.h b/sysdeps/mips/atomic-machine.h index e946b9d395..47752ee53e 100644 --- a/sysdeps/mips/atomic-machine.h +++ b/sysdeps/mips/atomic-machine.h @@ -19,25 +19,8 @@ #ifndef _MIPS_ATOMIC_MACHINE_H #define _MIPS_ATOMIC_MACHINE_H 1 -#include <stdint.h> -#include <inttypes.h> #include <sgidefs.h> -typedef int32_t atomic32_t; -typedef uint32_t uatomic32_t; -typedef int_fast32_t atomic_fast32_t; -typedef uint_fast32_t uatomic_fast32_t; - -typedef int64_t atomic64_t; -typedef uint64_t uatomic64_t; -typedef int_fast64_t atomic_fast64_t; -typedef uint_fast64_t uatomic_fast64_t; - -typedef intptr_t atomicptr_t; -typedef uintptr_t uatomicptr_t; -typedef intmax_t atomic_max_t; -typedef uintmax_t uatomic_max_t; - #if _MIPS_SIM == _ABIO32 && __mips < 2 #define MIPS_PUSH_MIPS2 ".set mips2\n\t" #else |