mirror of
https://github.com/OpenAMP/libmetal.git
synced 2026-08-24 09:37:21 +08:00
Found via `codespell -q 3 -S ./scripts/spelling.txt` Signed-off-by: luz paz <luzpaz@users.noreply.github.com>
19 lines
341 B
C
19 lines
341 B
C
/*
|
|
* Copyright (c) 2021, Xiaomi Inc. and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
/*
|
|
* @file cpu.h
|
|
* @brief CPU specific primitives
|
|
*/
|
|
|
|
#ifndef __METAL_XTENSA_CPU__H__
|
|
#define __METAL_XTENSA_CPU__H__
|
|
|
|
#define metal_cpu_yield()
|
|
#define __sync_synchronize()
|
|
|
|
#endif /* __METAL_XTENSA_CPU__H__ */
|