| Index: runtime/platform/globals.h
|
| diff --git a/runtime/platform/globals.h b/runtime/platform/globals.h
|
| index a0dfdd07e0245cd39d2a6cd03259a8c32a2b45a0..7d5b431944935284486adf05174f01229c9dcd27 100644
|
| --- a/runtime/platform/globals.h
|
| +++ b/runtime/platform/globals.h
|
| @@ -359,6 +359,11 @@ typedef simd128_value_t fpu_register_t;
|
| #error Unknown architecture.
|
| #endif
|
|
|
| +// Disable background threads by default on armv5te. The relevant
|
| +// implementations are uniprocessors.
|
| +#if !defined(TARGET_ARCH_ARM_5TE)
|
| +#define ARCH_IS_MULTI_CORE 1
|
| +#endif
|
|
|
| // Short form printf format specifiers
|
| #define Pd PRIdPTR
|
|
|