20#ifndef ZEPHYR_KERNEL_INCLUDE_KERNEL_STRUCTS_H_
21#define ZEPHYR_KERNEL_INCLUDE_KERNEL_STRUCTS_H_
23#if !defined(_ASMLANGUAGE)
49#define _THREAD_DUMMY (BIT(0))
52#define _THREAD_PENDING (BIT(1))
55#define _THREAD_PRESTART (BIT(2))
58#define _THREAD_DEAD (BIT(3))
61#define _THREAD_SUSPENDED (BIT(4))
64#define _THREAD_ABORTING (BIT(5))
67#define _THREAD_QUEUED (BIT(7))
71#ifdef CONFIG_STACK_SENTINEL
73#define STACK_SENTINEL 0xF0F0F0F0
77#define _NON_PREEMPT_THRESHOLD 0x0080U
80#define _PREEMPT_THRESHOLD (_NON_PREEMPT_THRESHOLD - 1U)
82#if !defined(_ASMLANGUAGE)
90#if defined(CONFIG_SCHED_DUMB)
92#elif defined(CONFIG_SCHED_SCALABLE)
94#elif defined(CONFIG_SCHED_MULTIQ)
99typedef struct _ready_q _ready_q_t;
114#ifdef CONFIG_SCHED_CPU_MASK_PIN_ONLY
115 struct _ready_q ready_q;
118#if (CONFIG_NUM_METAIRQ_PRIORITIES > 0) && \
119 (CONFIG_NUM_COOP_PRIORITIES > CONFIG_NUM_METAIRQ_PRIORITIES)
126#if defined(CONFIG_FPU_SHARING)
135#ifdef CONFIG_SCHED_THREAD_USAGE
144#ifdef CONFIG_SCHED_THREAD_USAGE_ALL
149#ifdef CONFIG_OBJ_CORE_SYSTEM
154 struct _cpu_arch arch;
157typedef struct _cpu _cpu_t;
160 struct _cpu cpus[CONFIG_MP_MAX_NUM_CPUS];
170#ifndef CONFIG_SCHED_CPU_MASK_PIN_ONLY
171 struct _ready_q ready_q;
174#ifdef CONFIG_FPU_SHARING
188#if defined(CONFIG_THREAD_MONITOR)
191#ifdef CONFIG_SCHED_THREAD_USAGE_ALL
195#ifdef CONFIG_OBJ_CORE_SYSTEM
199#if defined(CONFIG_SMP) && defined(CONFIG_SCHED_IPI_SUPPORTED)
205typedef struct z_kernel _kernel_t;
207extern struct z_kernel _kernel;
216bool z_smp_cpu_mobile(
void);
218#define _current_cpu ({ __ASSERT_NO_MSG(!z_smp_cpu_mobile()); \
220#define _current k_sched_current_thread_query()
223#define _current_cpu (&_kernel.cpus[0])
224#define _current _kernel.cpus[0].current
229#ifdef CONFIG_WAITQ_SCALABLE
232 struct _priq_rb waitq;
235extern bool z_priq_rb_lessthan(
struct rbnode *a,
struct rbnode *b);
237#define Z_WAIT_Q_INIT(wait_q) { { { .lessthan_fn = z_priq_rb_lessthan } } }
245#define Z_WAIT_Q_INIT(wait_q) { SYS_DLIST_STATIC_INIT(&(wait_q)->waitq) }
252typedef void (*_timeout_func_t)(
struct _timeout *t);
257#ifdef CONFIG_TIMEOUT_64BIT
long atomic_t
Definition: atomic.h:22
struct _dnode sys_dnode_t
Doubly-linked list node structure.
Definition: dlist.h:55
struct _dnode sys_dlist_t
Doubly-linked list structure.
Definition: dlist.h:51
void(* k_thread_timeslice_fn_t)(struct k_thread *thread, void *data)
Definition: kernel_structs.h:265
__UINT32_TYPE__ uint32_t
Definition: stdint.h:90
__INT32_TYPE__ int32_t
Definition: stdint.h:74
__UINT8_TYPE__ uint8_t
Definition: stdint.h:88
__INT64_TYPE__ int64_t
Definition: stdint.h:75
Structure used to track internal statistics about both thread and CPU usage.
Definition: stats.h:18
Object core structure.
Definition: obj_core.h:121
Thread Structure.
Definition: thread.h:250
Balanced red/black tree node structure.
Definition: rb.h:58