Pārlūkot izejas kodu

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 <raj.khem@gmail.com>
Khem Raj 13 gadi atpakaļ
vecāks
revīzija
e25a95a7a3
1 mainītis faili ar 5 papildinājumiem un 0 dzēšanām
  1. 5 0
      libc/sysdeps/linux/arm/bits/atomic.h

+ 5 - 0
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 <common/bits/atomic.h>
+#else
 #include <stdint.h>
 #include <sysdep.h>
 
@@ -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