Home
last modified time | relevance | path

Searched refs:uxQueueLength (Results 1 – 2 of 2) sorted by relevance

/ThreadX-v6.3.0/utility/rtos_compatibility_layers/FreeRTOS/
Dtx_freertos.c1470 QueueHandle_t xQueueCreateStatic(UBaseType_t uxQueueLength, in xQueueCreateStatic() argument
1477 configASSERT(uxQueueLength != 0u); in xQueueCreateStatic()
1488 TX_MEMSET(pucQueueStorageBuffer, 0, uxQueueLength * uxItemSize); in xQueueCreateStatic()
1497 pxQueueBuffer->queue_length = uxQueueLength; in xQueueCreateStatic()
1504 ret = tx_semaphore_create(&pxQueueBuffer->write_sem, "", uxQueueLength); in xQueueCreateStatic()
1513 QueueHandle_t xQueueCreate(UBaseType_t uxQueueLength, UBaseType_t uxItemSize) in xQueueCreate() argument
1520 configASSERT(uxQueueLength != 0u); in xQueueCreate()
1534 mem_size = uxQueueLength*(uxItemSize); in xQueueCreate()
1551 p_queue->queue_length = uxQueueLength; in xQueueCreate()
1558 ret = tx_semaphore_create(&p_queue->write_sem, "", uxQueueLength); in xQueueCreate()
DFreeRTOS.h484 QueueHandle_t xQueueCreate(UBaseType_t uxQueueLength, UBaseType_t uxItemSize);
486 QueueHandle_t xQueueCreateStatic(UBaseType_t uxQueueLength,