Home
last modified time | relevance | path

Searched refs:Z_THREAD_LOCAL (Results 1 – 15 of 15) sorted by relevance

/Zephyr-latest/include/zephyr/
Dtypes.h38 #ifndef Z_THREAD_LOCAL
40 #define Z_THREAD_LOCAL thread_local macro
42 #define Z_THREAD_LOCAL thread_local macro
44 #define Z_THREAD_LOCAL _Thread_local macro
46 #define Z_THREAD_LOCAL __thread macro
Dkernel.h666 extern Z_THREAD_LOCAL k_tid_t z_tls_current; in k_current_get()
/Zephyr-latest/lib/os/
Dthread_entry.c18 Z_THREAD_LOCAL k_tid_t z_tls_current;
22 extern Z_THREAD_LOCAL volatile uintptr_t __stack_chk_guard;
/Zephyr-latest/tests/kernel/threads/tls/src/
Dmain.c54 static uint8_t Z_THREAD_LOCAL thread_data8 = STATIC_DATA8;
55 static uint32_t Z_THREAD_LOCAL thread_data32 = STATIC_DATA32;
56 static uint64_t Z_THREAD_LOCAL thread_data64 = STATIC_DATA64;
59 static uint8_t Z_THREAD_LOCAL thread_bss8;
60 static uint32_t Z_THREAD_LOCAL thread_bss32;
61 static uint64_t Z_THREAD_LOCAL thread_bss64;
/Zephyr-latest/doc/kernel/services/other/
Dthread_local_storage.rst32 The macro ``Z_THREAD_LOCAL`` can be used to declare thread local variables.
38 extern Z_THREAD_LOCAL int i;
44 Z_THREAD_LOCAL int i;
50 static Z_THREAD_LOCAL int j;
/Zephyr-latest/include/zephyr/sys/
Derrno_private.h30 extern Z_THREAD_LOCAL int z_errno_var;
/Zephyr-latest/kernel/
Derrno.c30 Z_THREAD_LOCAL int z_errno_var;
Dcompiler_stack_protect.c51 Z_THREAD_LOCAL volatile uintptr_t __stack_chk_guard;
Dxip.c15 extern Z_THREAD_LOCAL volatile uintptr_t __stack_chk_guard;
Dinit.c294 extern Z_THREAD_LOCAL volatile uintptr_t __stack_chk_guard;
/Zephyr-latest/tests/kernel/mem_protect/stackprot/src/
Dmain.c147 extern Z_THREAD_LOCAL volatile uintptr_t __stack_chk_guard;
/Zephyr-latest/include/zephyr/arch/riscv/
Dsyscall.h161 extern Z_THREAD_LOCAL uint8_t is_user_mode; in arch_is_user_context()
/Zephyr-latest/arch/xtensa/core/
Dthread.c25 Z_THREAD_LOCAL uint32_t is_user_mode;
/Zephyr-latest/arch/riscv/core/
Dthread.c18 Z_THREAD_LOCAL uint8_t is_user_mode;
/Zephyr-latest/include/zephyr/arch/xtensa/
Dsyscall.h206 extern Z_THREAD_LOCAL uint32_t is_user_mode; in arch_is_user_context()