Line data Source code
1 0 : /*
2 : * Copyright (c) 2021 KT-Elektronik, Klaucke und Partner GmbH
3 : * Copyright (c) 2024 Renesas Electronics Corporation
4 : *
5 : * SPDX-License-Identifier: Apache-2.0
6 : */
7 :
8 : #ifndef ZEPHYR_INCLUDE_ARCH_RX_THREAD_H_
9 : #define ZEPHYR_INCLUDE_ARCH_RX_THREAD_H_
10 :
11 : #ifndef _ASMLANGUAGE
12 : #include <zephyr/types.h>
13 :
14 : #ifdef __cplusplus
15 : extern "C" {
16 : #endif
17 :
18 : struct _callee_saved {
19 : /* General purpose callee-saved registers */
20 : };
21 :
22 : typedef struct _callee_saved _callee_saved_t;
23 :
24 : struct _thread_arch {
25 : /* empty */
26 : };
27 :
28 : typedef struct _thread_arch _thread_arch_t;
29 :
30 : #ifdef __cplusplus
31 : }
32 : #endif
33 :
34 : #endif /* _ASMLANGUAGE */
35 :
36 : #endif /* ZEPHYR_INCLUDE_ARCH_RX_THREAD_H_ */
|