Home
last modified time | relevance | path

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

/ThreadX-v6.4.1/utility/rtos_compatibility_layers/FreeRTOS/
Dtx_freertos.c1473 QueueHandle_t xQueueCreateStatic(UBaseType_t uxQueueLength, in xQueueCreateStatic() argument
1480 configASSERT(uxQueueLength != 0u); in xQueueCreateStatic()
1491 TX_MEMSET(pucQueueStorageBuffer, 0, uxQueueLength * uxItemSize); in xQueueCreateStatic()
1500 pxQueueBuffer->queue_length = uxQueueLength; in xQueueCreateStatic()
1507 ret = tx_semaphore_create(&pxQueueBuffer->write_sem, "", uxQueueLength); in xQueueCreateStatic()
1516 QueueHandle_t xQueueCreate(UBaseType_t uxQueueLength, UBaseType_t uxItemSize) in xQueueCreate() argument
1523 configASSERT(uxQueueLength != 0u); in xQueueCreate()
1532 if ((uxQueueLength > (SIZE_MAX / uxItemSize)) || in xQueueCreate()
1533 (uxQueueLength > (ULONG_MAX / uxItemSize))) { in xQueueCreate()
1544 mem_size = uxQueueLength*(uxItemSize); in xQueueCreate()
[all …]
DFreeRTOS.h483 QueueHandle_t xQueueCreate(UBaseType_t uxQueueLength, UBaseType_t uxItemSize);
485 QueueHandle_t xQueueCreateStatic(UBaseType_t uxQueueLength,