aboutsummaryrefslogtreecommitdiff
path: root/platform/linux-generic/arch/arm/odp/api/cpu_arch.h
diff options
context:
space:
mode:
Diffstat (limited to 'platform/linux-generic/arch/arm/odp/api/cpu_arch.h')
-rw-r--r--platform/linux-generic/arch/arm/odp/api/cpu_arch.h30
1 files changed, 0 insertions, 30 deletions
diff --git a/platform/linux-generic/arch/arm/odp/api/cpu_arch.h b/platform/linux-generic/arch/arm/odp/api/cpu_arch.h
deleted file mode 100644
index 7c75a690e..000000000
--- a/platform/linux-generic/arch/arm/odp/api/cpu_arch.h
+++ /dev/null
@@ -1,30 +0,0 @@
-/* Copyright (c) 2016, Linaro Limited
- * All rights reserved.
- *
- * SPDX-License-Identifier: BSD-3-Clause
- */
-
-#ifndef ODP_PLAT_CPU_ARCH_H_
-#define ODP_PLAT_CPU_ARCH_H_
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-#define _ODP_CACHE_LINE_SIZE 64
-
-static inline void odp_cpu_pause(void)
-{
- /* YIELD hints the CPU to switch to another thread if possible
- * and executes as a NOP otherwise.
- * ISB flushes the pipeline, then restarts. This is guaranteed to
- * stall the CPU a number of cycles.
- */
- __asm volatile("isb" ::: "memory");
-}
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif