mirror of https://github.com/F-Stack/f-stack.git
15 lines
274 B
C
15 lines
274 B
C
|
/* SPDX-License-Identifier: BSD-3-Clause
|
||
|
* Copyright(c) 2015 RehiveTech. All rights reserved.
|
||
|
*/
|
||
|
|
||
|
#ifndef _RTE_ATOMIC_ARM_H_
|
||
|
#define _RTE_ATOMIC_ARM_H_
|
||
|
|
||
|
#ifdef RTE_ARCH_64
|
||
|
#include <rte_atomic_64.h>
|
||
|
#else
|
||
|
#include <rte_atomic_32.h>
|
||
|
#endif
|
||
|
|
||
|
#endif /* _RTE_ATOMIC_ARM_H_ */
|