mirror of
https://github.com/OpenAMP/libmetal.git
synced 2026-02-08 05:47:48 +08:00
Found via `codespell -q 3 -S ./scripts/spelling.txt` Signed-off-by: luz paz <luzpaz@users.noreply.github.com>
21 lines
383 B
C
21 lines
383 B
C
/*
|
|
* Copyright (c) 2017, Xilinx Inc. and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
/*
|
|
* @file cpu.h
|
|
* @brief CPU specific primitives on microblaze platform.
|
|
*/
|
|
|
|
#ifndef __METAL_MICROBLAZE__H__
|
|
#define __METAL_MICROBLAZE__H__
|
|
|
|
#include <stdint.h>
|
|
#include <metal/atomic.h>
|
|
|
|
#define metal_cpu_yield()
|
|
|
|
#endif /* __METAL_MICROBLAZE__H__ */
|