mirror of https://github.com/F-Stack/f-stack.git
23 lines
379 B
C
23 lines
379 B
C
/* SPDX-License-Identifier: BSD-3-Clause
|
|
* Copyright(c) 2019 Arm Limited
|
|
*/
|
|
|
|
#ifndef _RTE_TICKETLOCK_ARM_H_
|
|
#define _RTE_TICKETLOCK_ARM_H_
|
|
|
|
#ifndef RTE_FORCE_INTRINSICS
|
|
# error Platform must be built with RTE_FORCE_INTRINSICS
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "generic/rte_ticketlock.h"
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* _RTE_TICKETLOCK_ARM_H_ */
|