mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-16 14:21:55 +00:00
Any word started with underscore followed by and uppercase letter or a second underscore is a reserved word according with C99. Signed-off-by: Flavio Ceolin <flavio.ceolin@intel.com>
32 lines
516 B
C
32 lines
516 B
C
/*
|
|
* Copyright (c) 2014 Wind River Systems, Inc.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* @file
|
|
* @brief ARCv2 public exception handling
|
|
*
|
|
* ARC-specific kernel exception handling interface. Included by arc/arch.h.
|
|
*/
|
|
|
|
#ifndef ZEPHYR_INCLUDE_ARCH_ARC_V2_EXC_H_
|
|
#define ZEPHYR_INCLUDE_ARCH_ARC_V2_EXC_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifdef _ASMLANGUAGE
|
|
#else
|
|
typedef struct _irq_stack_frame NANO_ESF;
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
|
|
#endif /* ZEPHYR_INCLUDE_ARCH_ARC_V2_EXC_H_ */
|