Zephyr Project API 4.4.99
A Scalable Open Source RTOS
Loading...
Searching...
No Matches
thread.h
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: Copyright (c) 2024 Infineon Technologies AG,
3 * SPDX-FileCopyrightText: or an affiliate of Infineon Technologies AG. All rights reserved.
4 * SPDX-FileCopyrightText: Copyright (c) 2026 Linumiz
5 *
6 * SPDX-License-Identifier: Apache-2.0
7 */
8
13
14#ifndef ZEPHYR_INCLUDE_ARCH_TRICORE_THREAD_H_
15#define ZEPHYR_INCLUDE_ARCH_TRICORE_THREAD_H_
16
17#ifndef _ASMLANGUAGE
18#include <zephyr/types.h>
19
21
22struct _callee_saved {
23 uint32_t pcxi;
24};
25
26typedef struct _callee_saved _callee_saved_t;
27
28struct _thread_arch {
29 /* empty */
30};
31
32typedef struct _thread_arch _thread_arch_t;
33
35
36#endif /* _ASMLANGUAGE */
37
38#endif /* ZEPHYR_INCLUDE_ARCH_TREAD_THREAD_H_ */
__UINT32_TYPE__ uint32_t
Definition stdint.h:90