/Zephyr-latest/include/zephyr/arch/xtensa/ |
D | syscall.h | 199 uint32_t thread; in arch_is_user_context() local 203 : "=a" (thread) in arch_is_user_context() 208 if (!thread) { in arch_is_user_context() 214 return !!thread; in arch_is_user_context()
|
/Zephyr-latest/kernel/ |
D | Kconfig.mem_domain | 35 a memory domain's thread membership requires synchronous calls 48 thread access to memory. Memory domain APIs may only be invoked from 61 the architecture supports isolating thread stacks for threads 69 If enabled, thread stacks within the same memory domains are
|
D | pipes.c | 232 static int pipe_walk_op(struct k_thread *thread, void *data) in pipe_walk_op() argument 235 struct _pipe_desc *desc = (struct _pipe_desc *)thread->base.swap_data; in pipe_walk_op() 287 desc[0].thread = NULL; in pipe_buffer_list_populate() 297 desc[1].thread = NULL; in pipe_buffer_list_populate() 359 if (dest->thread == NULL) { in pipe_write() 372 z_unpend_thread(dest->thread); in pipe_write() 373 z_ready_thread(dest->thread); in pipe_write() 460 src_desc->thread = _current; in z_impl_k_pipe_put() 598 dest_desc->thread = _current; in pipe_get_internal() 617 if (src_desc->thread == NULL) { in pipe_get_internal() [all …]
|
D | Kconfig.smp | 56 thread to take an interrupt, which can be arbitrarily far in the 64 Threads that are preempted by a local thread (a thread that is 66 trigger additional IPIs when the preempted thread is of higher 67 priority than a currently executing thread on another CPU. Although 87 a thread newly made ready for execution. This increases the 95 would be to not issue any IPIs if the newly readied thread is of
|
/Zephyr-latest/doc/connectivity/networking/api/ |
D | net_tech.rst | 11 thread.rst
|
/Zephyr-latest/modules/lvgl/include/ |
D | lvgl_zephyr_osal.h | 19 struct k_thread thread; member
|
/Zephyr-latest/subsys/net/conn_mgr/ |
D | Kconfig | 26 int "Size of the stack allocated for the conn_mgr_monitor thread" 32 int "Monitoring thread starting priority" 36 This sets the starting priority of the conn_mgr_monitor thread.
|
/Zephyr-latest/arch/x86/core/intel64/ |
D | coredump.c | 112 void arch_coredump_priv_stack_dump(struct k_thread *thread) in arch_coredump_priv_stack_dump() argument 118 hdr_stack_obj = (struct z_x86_thread_stack_header *)thread->stack_info.mapped.addr; in arch_coredump_priv_stack_dump() 120 hdr_stack_obj = (struct z_x86_thread_stack_header *)thread->stack_obj; in arch_coredump_priv_stack_dump()
|
/Zephyr-latest/drivers/ethernet/ |
D | Kconfig.adin2111 | 24 int "Stack size for a thread that processes ADIN IRQ" 27 Size of the stack used for internal thread which is ran to 34 Priority level for internal thread which is ran for ADIN
|
D | Kconfig.enc424j600 | 21 Size of the stack used for internal thread which is ran for 28 Priority level for internal thread which is ran for incoming
|
D | Kconfig.lan9250 | 22 Size of the stack used for internal thread which is ran for 29 Priority level for internal thread which is ran for incoming
|
D | Kconfig.w5500 | 21 Size of the stack used for internal thread which is ran for 29 Priority level for internal thread which is ran for incoming
|
/Zephyr-latest/tests/arch/arm/arm_interrupt/ |
D | README.txt | 66 E: Current thread: 0x20000148 (unknown) 73 E: Current thread: 0x20000148 (unknown) 82 E: Current thread: 0x20000148 (unknown) 91 E: Current thread: 0x20000148 (unknown) 103 E: Current thread: 0x20000148 (unknown) 115 E: Current thread: 0x20000148 (unknown) 124 E: Current thread: 0x20000148 (unknown) 137 E: Current thread: 0x20000080 (unknown)
|
/Zephyr-latest/tests/drivers/uart/uart_mix_fifo_poll/ |
D | README.txt | 8 - main thread 9 - higher priority thread
|
/Zephyr-latest/tests/arch/x86/static_idt/ |
D | README.txt | 26 Current thread ID = 0x001028e0 31 Fatal fault in thread 0x001028e0! Aborting.
|
/Zephyr-latest/tests/kernel/mutex/mutex_api/ |
D | Kconfig | 5 int "Wait time (in ticks) after thread creation"
|
/Zephyr-latest/subsys/usb/device/ |
D | usb_work_q.c | 24 k_thread_name_set(&z_usb_work_q.thread, "usbworkq"); in z_usb_work_q_init()
|
/Zephyr-latest/doc/kernel/services/timing/ |
D | timers.rst | 41 while running. The function is executed by the thread that stops the timer. 64 If a thread is waiting on the timer, it is unblocked. 71 If a thread is waiting on the timer, it is unblocked. 78 If a thread is waiting on the timer, it continues waiting. 86 A thread may read a timer's status indirectly by **synchronizing** 87 with the timer. This blocks the thread until the timer's status is non-zero 90 the thread continues without waiting. The synchronization operation 96 Similarly, only a single thread at a time should synchronize 133 :ref:`system workqueue <workqueues_v2>`, whose thread performs the work. 187 The following code performs timer status synchronization to allow a thread [all …]
|
/Zephyr-latest/doc/services/debugging/ |
D | index.rst | 9 thread-analyzer.rst
|
/Zephyr-latest/tests/kernel/sched/schedule_api/src/ |
D | test_slice_scheduling.c | 149 static void slice_expired(struct k_thread *thread, void *data) in slice_expired() argument 151 zassert_equal(thread, data, "wrong callback data pointer"); in slice_expired() 169 k_thread_abort(thread); in slice_expired()
|
/Zephyr-latest/tests/benchmarks/posix/threads/ |
D | Kconfig | 24 int "Size of each thread stack in this test" 29 The minimal stack size required to run a minimal thread.
|
/Zephyr-latest/tests/subsys/logging/log_blocking/ |
D | REAME.md | 11 In the last configuration, the log processing thread will block until space 14 > Warning ⚠️: Blocking the log processing thread is generally not recommended 57 so configured, we minimize the liklihood that the log processing thread will 77 log processing thread. 84 capacity. Once the core log buffer is full, the log processing thread is 91 correctly _even when the log processing thread is blocking_ in order to 95 backends that are unable to recover from stalling the log processing thread.
|
/Zephyr-latest/drivers/sensor/st/lsm6dsl/ |
D | Kconfig | 28 bool "Use global thread" 34 bool "Use own thread" 49 Priority of thread used by the driver to handle interrupts. 56 Stack size of thread used by the driver to handle interrupts.
|
/Zephyr-latest/drivers/sensor/nxp/fxos8700/ |
D | Kconfig | 51 bool "Use global thread" 58 bool "Use own thread" 76 int "Own thread priority" 81 int "Own thread stack size"
|
/Zephyr-latest/kernel/include/ |
D | ipi.h | 24 atomic_val_t ipi_mask_create(struct k_thread *thread);
|