/* Copyright (c) 2016-2018, Linaro Limited * All rights reserved. * * SPDX-License-Identifier: BSD-3-Clause */ #ifndef ODP_API_ABI_CPU_H_ #define ODP_API_ABI_CPU_H_ #ifdef __cplusplus extern "C" { #endif #define ODP_CACHE_LINE_SIZE 64 static inline void odp_cpu_pause(void) { #ifdef __SSE2__ __asm__ __volatile__ ("pause"); #else __asm__ __volatile__ ("rep; nop"); #endif } #ifdef __cplusplus } #endif #endif