Zephyr Project API 4.1.99
A Scalable Open Source RTOS
Loading...
Searching...
No Matches
thread.h
Go to the documentation of this file.
1/*
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
15extern "C" {
16#endif
17
18struct _callee_saved {
19 /* General purpose callee-saved registers */
20};
21
22typedef struct _callee_saved _callee_saved_t;
23
24struct _thread_arch {
25 /* empty */
26};
27
28typedef 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_ */