Home
last modified time | relevance | path

Searched refs:Queue (Results 1 – 6 of 6) sorted by relevance

/ThreadX-v6.4.1/utility/rtos_compatibility_layers/posix/
Dpx_mq_arrange_msg.c70 ULONG posix_arrange_msg(TX_QUEUE *Queue, ULONG *pMsgPrio) in posix_arrange_msg() argument
88 q_read = Queue -> tx_queue_read; in posix_arrange_msg()
91 numMsgs = Queue -> tx_queue_enqueued; in posix_arrange_msg()
155 if (q_read >= Queue -> tx_queue_end) in posix_arrange_msg()
158 q_read = Queue -> tx_queue_start; in posix_arrange_msg()
172 q_read = Queue -> tx_queue_read; in posix_arrange_msg()
Dpx_mq_close.c75 TX_QUEUE * Queue; in mq_close() local
79 Queue = &(mqdes->f_data->queue); in mq_close()
80 q_ptr = (POSIX_MSG_QUEUE * )Queue; in mq_close()
Dpx_mq_receive.c81 TX_QUEUE * Queue; in mq_receive() local
92 Queue = &(mqdes->f_data->queue); in mq_receive()
155 temp1 = posix_arrange_msg( Queue, pMsgPrio ); in mq_receive()
157 temp1 = tx_queue_receive(Queue, msgbuf1, wait_option); in mq_receive()
Dpx_mq_send.c83 TX_QUEUE *Queue; in mq_send() local
94 Queue = &(mqdes->f_data->queue); in mq_send()
208 temp1 = tx_queue_send(Queue, msg, TX_WAIT_FOREVER); in mq_send()
Dpx_int.h141 ULONG posix_arrange_msg( TX_QUEUE * Queue, ULONG * pMsgPrio );
/ThreadX-v6.4.1/utility/rtos_compatibility_layers/FreeRTOS/
Dreadme.md137 - Queue Sets
238 ## Queue section in FreeRTOS adaptation layer
266 ## Queue Sets
267 Queue sets are implemented with support for adding queues, semaphores and mutexes to a set. Due to …