mirror of
https://github.com/OpenAMP/libmetal.git
synced 2026-08-23 16:08:58 +08:00
24 lines
452 B
C
24 lines
452 B
C
/*
|
|
* Copyright (c) 2017, Pinecone Inc. and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
/*
|
|
* @file cpu.h
|
|
* @brief CPU specific primitives
|
|
*/
|
|
|
|
#ifndef __METAL_CEVA_CPU__H__
|
|
#define __METAL_CEVA_CPU__H__
|
|
|
|
#define metal_cpu_yield()
|
|
|
|
/*
|
|
* The dummy implementation is enough here since
|
|
* ceva dsp don't support the out of order and multi core
|
|
*/
|
|
#define __sync_synchronize()
|
|
|
|
#endif /* __METAL_CEVA_CPU__H__ */
|