Home
last modified time | relevance | path

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

/ThreadX-v6.3.0/utility/rtos_compatibility_layers/posix/
Dpx_mq_arrange_msg.c71 ULONG posix_arrange_msg(TX_QUEUE *Queue, ULONG *pMsgPrio) in posix_arrange_msg() argument
89 q_read = Queue -> tx_queue_read; in posix_arrange_msg()
92 numMsgs = Queue -> tx_queue_enqueued; in posix_arrange_msg()
156 if (q_read >= Queue -> tx_queue_end) in posix_arrange_msg()
159 q_read = Queue -> tx_queue_start; in posix_arrange_msg()
173 q_read = Queue -> tx_queue_read; in posix_arrange_msg()
Dpx_mq_close.c76 TX_QUEUE * Queue; in mq_close() local
80 Queue = &(mqdes->f_data->queue); in mq_close()
81 q_ptr = (POSIX_MSG_QUEUE * )Queue; in mq_close()
Dpx_mq_receive.c82 TX_QUEUE * Queue; in mq_receive() local
93 Queue = &(mqdes->f_data->queue); in mq_receive()
156 temp1 = posix_arrange_msg( Queue, pMsgPrio ); in mq_receive()
158 temp1 = tx_queue_receive(Queue, msgbuf1, wait_option); in mq_receive()
Dpx_mq_send.c84 TX_QUEUE *Queue; in mq_send() local
95 Queue = &(mqdes->f_data->queue); in mq_send()
209 temp1 = tx_queue_send(Queue, msg, TX_WAIT_FOREVER); in mq_send()
Dpx_int.h142 ULONG posix_arrange_msg( TX_QUEUE * Queue, ULONG * pMsgPrio );
/ThreadX-v6.3.0/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 …