/Zephyr-latest/samples/basic/minimal/ |
D | Kconfig | 6 bool "Do print from the main thread which can be checked"
|
/Zephyr-latest/arch/arm64/core/ |
D | mmu.c | 1285 static int map_thread_stack(struct k_thread *thread, in map_thread_stack() argument 1288 return private_map(ptables, "thread_stack", thread->stack_info.start, in map_thread_stack() 1289 thread->stack_info.start, thread->stack_info.size, in map_thread_stack() 1293 int arch_mem_domain_thread_add(struct k_thread *thread) in arch_mem_domain_thread_add() argument 1300 domain = thread->mem_domain_info.mem_domain; in arch_mem_domain_thread_add() 1302 old_ptables = thread->arch.ptables; in arch_mem_domain_thread_add() 1304 is_user = (thread->base.user_options & K_USER) != 0; in arch_mem_domain_thread_add() 1308 ret = map_thread_stack(thread, domain_ptables); in arch_mem_domain_thread_add() 1311 thread->arch.ptables = domain_ptables; in arch_mem_domain_thread_add() 1312 if (thread == _current) { in arch_mem_domain_thread_add() [all …]
|
/Zephyr-latest/doc/kernel/services/data_passing/ |
D | fifos.rst | 33 allocated from the calling thread's resource pool. 41 A data item may be **added** to a FIFO by a thread or an ISR. 42 The item is given directly to a waiting thread, if one exists; 46 A data item may be **removed** from a FIFO by a thread. If the FIFO's queue 47 is empty a thread may choose to wait for a data item to be given. 49 When a data item is added, it is given to the highest priority thread 127 thread's resource pool until the item is read. 135 to obtain data items from a producer thread,
|
/Zephyr-latest/arch/mips/core/ |
D | CMakeLists.txt | 13 thread.c
|
/Zephyr-latest/arch/x86/include/intel64/ |
D | kernel_arch_func.h | 39 void x86_sse_init(struct k_thread *thread);
|
/Zephyr-latest/arch/xtensa/core/ |
D | tls.c | 15 #error SoC does not support THREADPTR for thread local storage.
|
/Zephyr-latest/arch/x86/include/ia32/ |
D | kernel_arch_data.h | 67 extern void z_x86_tls_update_gdt(struct k_thread *thread);
|
/Zephyr-latest/include/zephyr/modem/backend/ |
D | tty.h | 26 struct k_thread thread; member
|
/Zephyr-latest/drivers/flash/ |
D | flash_cadence_nand_ll.c | 116 static uint32_t cdns_nand_get_thrd_status(uintptr_t base_address, uint8_t thread) in cdns_nand_get_thrd_status() argument 120 sys_write32(THREAD_VAL(thread), (base_address + CMD_STATUS_PTR_ADDR)); in cdns_nand_get_thrd_status() 132 static int cdns_wait_for_thread(uintptr_t base_address, uint8_t thread) in cdns_wait_for_thread() argument 135 if (!WAIT_FOR((sys_read32((base_address) + THR_STATUS) & BIT(thread)) == 0U, in cdns_wait_for_thread() 156 uint8_t thread, uint8_t vol_id) in cdns_nand_pio_set_features() argument 161 ret = cdns_wait_for_thread(base_address, thread); in cdns_nand_pio_set_features() 169 status = CMD_0_THREAD_POS_SET(thread); in cdns_nand_pio_set_features() 184 static int cdns_pio_transfer_complete(uintptr_t base_address, uint8_t thread) in cdns_pio_transfer_complete() argument 188 status = WAIT_FOR(((cdns_nand_get_thrd_status(base_address, thread)) != 0), IDLE_TIME_OUT, in cdns_pio_transfer_complete() 530 static int cdns_nand_send(uintptr_t base_address, char *desc_ptr, uint8_t thread) in cdns_nand_send() argument [all …]
|
/Zephyr-latest/subsys/net/ip/ |
D | Kconfig.mgmt | 27 bool "Separate network events thread" 29 Create a dedicated thread for network event callback handlers. 59 int "Stack size for the inner thread handling event callbacks" 109 int "Size of the stack allocated for the event_mon_stack thread" 137 bool "Customize net mgmt thread priority" 141 int "Priority of net_mgmt thread"
|
/Zephyr-latest/tests/subsys/portability/cmsis_rtos_v2/src/ |
D | thread_apis.c | 300 osThreadId_t thread; in ZTEST() local 303 thread = osThreadNew(thread5, NULL, NULL); /* osThreadDetached */ in ZTEST() 304 zassert_not_null(thread, "Failed to create thread with osThreadNew!"); in ZTEST() 308 status = osThreadJoin(thread); in ZTEST() 316 osThreadId_t thread = argument; in thread6() local 322 status = osThreadJoin(thread); in thread6()
|
/Zephyr-latest/drivers/ieee802154/ |
D | Kconfig.rf2xx | 16 int "Driver's internal RX thread stack size" 19 This option sets the driver's stack size for its internal RX thread.
|
/Zephyr-latest/drivers/sensor/adi/adxl362/ |
D | Kconfig | 72 bool "Use global thread" 78 bool "Use own thread" 102 Priority of thread used by the driver to handle interrupts. 109 Stack size of thread used by the driver to handle interrupts.
|
/Zephyr-latest/tests/subsys/ipc/ipc_sessions/interoperability/ |
D | Kconfig.icmsg_v1 | 37 Enable dedicated workqueue thread for the ICMsg backend. 56 Size of stack used by work queue RX thread. This work queue is 61 int "Priority of RX work queue thread" 65 Priority of the ICMSG RX work queue thread.
|
/Zephyr-latest/drivers/sensor/honeywell/sm351lt/ |
D | sm351lt.h | 34 struct k_thread thread; member
|
/Zephyr-latest/samples/subsys/ipc/rpmsg_service/ |
D | README.rst | 56 Starting application thread! 70 Starting application thread! 108 Starting application thread! 122 Starting application thread! 145 Starting application thread!
|
/Zephyr-latest/cmake/linker_script/common/ |
D | thread-local-storage.cmake | 1 # originates from thread-local-storage.ld 20 # thread-local variables, and the code would use
|
/Zephyr-latest/tests/kernel/mem_protect/stackprot/ |
D | README.txt | 39 Current thread ID = 0x00103180 44 Fatal fault in thread 0x00103180! Aborting.
|
/Zephyr-latest/arch/nios2/core/ |
D | CMakeLists.txt | 6 thread.c
|
/Zephyr-latest/include/zephyr/internal/ |
D | syscall_handler.h | 157 void k_thread_perms_set(struct k_object *ko, struct k_thread *thread); 168 void k_thread_perms_clear(struct k_object *ko, struct k_thread *thread); 181 void k_thread_perms_all_clear(struct k_thread *thread);
|
/Zephyr-latest/doc/hardware/peripherals/ |
D | uart.rst | 19 :c:func:`uart_poll_out`, is a blocking function and the thread waits until the given 23 background while the thread continues with other tasks. The Kernel's 25 the thread and the UART driver.
|
/Zephyr-latest/drivers/ethernet/phy/ |
D | Kconfig.dm8806 | 26 bool "Use global thread" 47 Priority of thread used by the driver to handle interrupts. 54 Stack size of thread used by the driver to handle interrupts.
|
/Zephyr-latest/drivers/sensor/st/lis2dh/ |
D | Kconfig | 27 bool "Use global thread" 33 bool "Use own thread" 48 Priority of thread used by the driver to handle interrupts. 55 Stack size of thread used by the driver to handle interrupts.
|
/Zephyr-latest/tests/kernel/fatal/message_capture/src/ |
D | main.c | 13 void z_thread_essential_clear(struct k_thread *thread);
|
/Zephyr-latest/scripts/native_simulator/common/src/ |
D | nct.c | 101 pthread_t thread; /* Actual pthread_t as returned by the native kernel */ member 476 NSI_SAFE_CALL(pthread_create(&tt_el->thread, in nct_new_thread() 485 tt_el->thread); in nct_new_thread() 574 if (pthread_cancel(tt_el->thread)) { in nct_clean_up() 657 return pthread_setname_np(tt_el->thread, str); in nct_thread_name_set()
|