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/arm | |
parent | 5a5f7a160da6ac3d141013e9a08f78edc216e434 (diff) | |
download | glibc-92ff345137bfc9e1ecf23c604b7022a25e36cb32.tar glibc-92ff345137bfc9e1ecf23c604b7022a25e36cb32.tar.gz glibc-92ff345137bfc9e1ecf23c604b7022a25e36cb32.tar.bz2 glibc-92ff345137bfc9e1ecf23c604b7022a25e36cb32.zip |
Remove atomic-machine.h atomic typedefs
Now that memusage.c uses generic types we can remove them.
Diffstat (limited to 'sysdeps/arm')
-rw-r--r-- | sysdeps/arm/atomic-machine.h | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/sysdeps/arm/atomic-machine.h b/sysdeps/arm/atomic-machine.h index 7928ff29d8..b439be9bfc 100644 --- a/sysdeps/arm/atomic-machine.h +++ b/sysdeps/arm/atomic-machine.h @@ -16,23 +16,6 @@ License along with the GNU C Library. If not, see <https://www.gnu.org/licenses/>. */ -#include <stdint.h> - -typedef int8_t atomic8_t; -typedef uint8_t uatomic8_t; -typedef int_fast8_t atomic_fast8_t; -typedef uint_fast8_t uatomic_fast8_t; - -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 intptr_t atomicptr_t; -typedef uintptr_t uatomicptr_t; -typedef intmax_t atomic_max_t; -typedef uintmax_t uatomic_max_t; - #define __HAVE_64B_ATOMICS 0 #define USE_ATOMIC_COMPILER_BUILTINS 0 #define ATOMIC_EXCHANGE_USES_CAS 1 |