From e25a95a7a3c9f5bb3a38106422b12f83bf58d119 Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Mon, 14 Mar 2011 22:45:33 -0700 Subject: arm/bits/atomic.h: Include common/bit/atomic.h for thumb1 This restores the behavior for thumb1 builds and yet uses the new atomic.h for arm and thumb2 modes. Signed-off-by: Khem Raj --- libc/sysdeps/linux/arm/bits/atomic.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'libc/sysdeps/linux/arm/bits') diff --git a/libc/sysdeps/linux/arm/bits/atomic.h b/libc/sysdeps/linux/arm/bits/atomic.h index 07101fbe8..0b90330dd 100644 --- a/libc/sysdeps/linux/arm/bits/atomic.h +++ b/libc/sysdeps/linux/arm/bits/atomic.h @@ -16,6 +16,9 @@ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ +#if defined __thumb__ && !defined __thumb2__ +#include_next +#else #include #include @@ -129,3 +132,5 @@ void __arm_link_error (void); #define __arch_compare_and_exchange_val_64_acq(mem, newval, oldval) \ ({ __arm_link_error (); oldval; }) + +#endif -- cgit v1.2.3