Searched refs:queues (Results 1 – 25 of 53) sorted by relevance
123
/Zephyr-latest/subsys/rtio/ |
D | Kconfig.workq | 5 bool "RTIO Work-queues service to process Sync operations" 9 Enable RTIO Work-queues to allow processing synchronous operations 15 int "Medium Thread priority of RTIO Work-queues" 27 int "Pool of work items to use with the RTIO Work-queues"
|
/Zephyr-latest/samples/arch/smp/pktqueue/ |
D | README.rst | 38 The headers then are stored in multiple "sender" queues (the number is defined 39 in QUEUE_NUM). After that for each pair of "sender"/"receiver" queues one thread 47 As soon as all headers in each pair of queues are moved from "sender" to 55 number of parallel executed pairs of queues(``QUEUE_NUM``), 56 the number of threads per pair of queues(``THREADS_NUM``), 79 Each of 2 parallel queues is processed by 3 threads on 2 cores and contain 5000 packet headers.
|
/Zephyr-latest/kernel/include/ |
D | priority_q.h | 147 sys_dlist_t *l = &pq->queues[i * 64 + u64_count_trailing_zeros(pq->bitmask[i])]; in z_priq_mq_best() 149 sys_dlist_t *l = &pq->queues[i * 32 + u32_count_trailing_zeros(pq->bitmask[i])]; in z_priq_mq_best() 184 for (int i = 0; i < ARRAY_SIZE(q->queues); i++) { in z_priq_mq_init() 185 sys_dlist_init(&q->queues[i]); in z_priq_mq_init() 194 sys_dlist_append(&pq->queues[pos.offset_prio], &thread->base.qnode_dlist); in z_priq_mq_add() 204 if (sys_dlist_is_empty(&pq->queues[pos.offset_prio])) { in z_priq_mq_remove()
|
/Zephyr-latest/boards/intel/socfpga/agilex5_socdk/ |
D | intel_socfpga_agilex5_socdk.dts | 42 num-tx-queues = <1>; 43 num-rx-queues = <1>;
|
/Zephyr-latest/drivers/ethernet/ |
D | Kconfig.sam_gmac | 25 DT_ETH_SAM_GMAC_NQ := $(dt_node_int_prop_int,$(DT_ETH_SAM_GMAC_PATH),num-queues) 28 int "Number of active hardware TX and RX queues" 35 Select the number of hardware queues used by the driver. Packets will be 36 routed to appropriate queues based on their priority. 59 Which queue to force the routing to. This affects both the TX and RX queues
|
/Zephyr-latest/dts/arm/atmel/ |
D | same70b.dtsi | 12 num-queues = <6>;
|
D | same5x.dtsi | 19 num-queues = <1>;
|
/Zephyr-latest/doc/connectivity/networking/api/ |
D | traffic-class.rst | 17 transmit queues. The option :kconfig:option:`CONFIG_NET_TC_RX_COUNT` can be used to set 18 the number of receive queues. Each traffic class queue corresponds to a
|
D | ethernet.rst | 33 * :ref:`Priority queues <traffic-class-support>`
|
D | 8021Qav.rst | 22 also priority queues ``ETHERNET_PRIORITY_QUEUES`` need to be supported.
|
/Zephyr-latest/doc/kernel/data_structures/ |
D | mpsc_lockfree.rst | 8 at `1024cores <https://www.1024cores.net/home/lock-free-algorithms/queues/intrusive-mpsc-node-based…
|
/Zephyr-latest/samples/subsys/portability/cmsis_rtos_v1/timer_synchronization/ |
D | README.rst | 4 Use timers and message queues from CMSIS RTOS v1 API to synchronize threads. 8 The sample project illustrates usage of timers and message queues using
|
/Zephyr-latest/samples/subsys/portability/cmsis_rtos_v2/timer_synchronization/ |
D | README.rst | 4 Use timers and message queues from CMSIS RTOS v2 API to synchronize threads. 8 The sample project illustrates usage of timers and message queues using
|
/Zephyr-latest/samples/drivers/can/counter/ |
D | README.rst | 12 Messages are received using message-queues and work-queues.
|
/Zephyr-latest/tests/kernel/queue/src/ |
D | test_queue_contexts.c | 390 static struct k_queue queues[QUEUE_NUM]; in ZTEST() local 393 k_queue_init(&queues[i]); in ZTEST() 396 tqueue_append(&queues[i]); in ZTEST() 397 tqueue_get(&queues[i]); in ZTEST()
|
/Zephyr-latest/doc/connectivity/networking/ |
D | net-stack-architecture.rst | 93 the system, but it is possible to have up to 8 receive queues. 94 These queues will process incoming packets with different priority. 95 See :ref:`traffic-class-support` for more details. The receive queues also 149 transmit queues. These queues will process the sent packets with different 159 Note that in both the TX and RX data paths, the queues
|
/Zephyr-latest/drivers/disk/nvme/ |
D | Kconfig | 25 int "Number of IO queues" 29 This sets the amount of allocated I/O queues.
|
/Zephyr-latest/subsys/tracing/ |
D | Kconfig | 260 bool "Tracing FIFO queues" 263 Enable tracing FIFO queues. 266 bool "Tracing LIFO queues" 269 Enable tracing LIFO queues.
|
/Zephyr-latest/include/zephyr/ |
D | kernel_structs.h | 123 sys_dlist_t queues[K_NUM_THREAD_PRIO]; member
|
/Zephyr-latest/tests/benchmarks/wait_queues/ |
D | Kconfig | 21 stress on the wait queues and better highlight the performance
|
/Zephyr-latest/subsys/portability/cmsis_rtos_v2/ |
D | Kconfig | 90 Mention maximum number of message queues in CMSIS RTOS V2 compliant application. 96 Mention maximum dynamic size of message queues in CMSIS RTOS V2 compliant application.
|
/Zephyr-latest/doc/services/rtio/ |
D | index.rst | 15 driven I/O. This section covers the RTIO API, queues, executor, iodev, 19 as that API matches up well with hardware transfer queues and descriptions such as 45 lock-free ring buffers acting as queues shared between the kernel and a userland 208 Many requests to the same SPI peripheral for example might be translated to hardware command queues… 212 against using a thread for each concurrent I/O operation or custom queues and
|
/Zephyr-latest/kernel/ |
D | Kconfig.obj_core | 65 bool "Integrate message queues into object core framework" 68 When enabled, this option integrates message queues into the object
|
/Zephyr-latest/drivers/ethernet/dwc_xgmac/ |
D | Kconfig | 50 Number hardware queues supported by the XGMAC IP
|
/Zephyr-latest/doc/kernel/services/ |
D | index.rst | 87 data_passing/queues.rst
|
123