mirror of
https://github.com/OpenAMP/libmetal.git
synced 2026-08-23 16:08:58 +08:00
Found via `codespell -q 3 -S ./scripts/spelling.txt` Signed-off-by: luz paz <luzpaz@users.noreply.github.com>
18 lines
303 B
C
18 lines
303 B
C
/*
|
|
* Copyright (c) 2015, Xilinx Inc. and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
/*
|
|
* @file cpu.h
|
|
* @brief CPU specific primitives
|
|
*/
|
|
|
|
#ifndef __METAL_ARM_CPU__H__
|
|
#define __METAL_ARM_CPU__H__
|
|
|
|
#define metal_cpu_yield()
|
|
|
|
#endif /* __METAL_ARM_CPU__H__ */
|