Home
last modified time | relevance | path

Searched refs:fifo2 (Results 1 – 3 of 3) sorted by relevance

/Zephyr-latest/tests/benchmarks/sys_kernel/src/
Dmwfifo.c13 struct k_fifo fifo2; variable
26 k_fifo_init(&fifo2); in fifo_test_init()
54 k_fifo_put(&fifo2, element); in fifo_thread1()
83 pelement = k_fifo_get(&fifo2, K_FOREVER); in fifo_thread2()
116 while ((pelement = k_fifo_get(&fifo2, K_NO_WAIT)) == NULL) { in fifo_thread3()
236 pelement = k_fifo_get(&fifo2, K_FOREVER); in fifo_test()
240 pelement = k_fifo_get(&fifo2, K_FOREVER); in fifo_test()
/Zephyr-latest/tests/kernel/fifo/fifo_usage/src/
Dmain.c47 static K_FIFO_DEFINE(fifo2);
189 thread_entry_fn_dual, &fifo1, &fifo2, NULL, in ZTEST()
194 k_fifo_put(&fifo2, (void *)&data2[i]); in ZTEST()
221 thread_entry_fn_isr, &fifo1, &fifo2, NULL, in ZTEST()
226 irq_offload(tIsr_entry_put, (const void *)&fifo2); in ZTEST()
/Zephyr-latest/tests/kernel/obj_core/obj_core/src/
Dmain.c24 static struct k_fifo fifo2; variable
224 k_fifo_init(&fifo2); in ZTEST()
226 K_OBJ_CORE(&fifo1), K_OBJ_CORE(&fifo2)); in ZTEST()