Home
last modified time | relevance | path

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

/ThreadX-v6.4.1/utility/rtos_compatibility_layers/FreeRTOS/
Dtx_freertos.c1075 SemaphoreHandle_t xSemaphoreCreateCounting(UBaseType_t uxMaxCount, in xSemaphoreCreateCounting() argument
1081 configASSERT(uxMaxCount != 0u); in xSemaphoreCreateCounting()
1082 configASSERT(uxInitialCount <= uxMaxCount); in xSemaphoreCreateCounting()
1096 p_sem->max_count = uxMaxCount; in xSemaphoreCreateCounting()
1109 SemaphoreHandle_t xSemaphoreCreateCountingStatic(UBaseType_t uxMaxCount, in xSemaphoreCreateCountingStatic() argument
1115 configASSERT(uxMaxCount != 0u); in xSemaphoreCreateCountingStatic()
1116 configASSERT(uxInitialCount <= uxMaxCount); in xSemaphoreCreateCountingStatic()
1126 pxSemaphoreBuffer->max_count = uxMaxCount; in xSemaphoreCreateCountingStatic()
DFreeRTOS.h440 SemaphoreHandle_t xSemaphoreCreateCounting(UBaseType_t uxMaxCount,
443 SemaphoreHandle_t xSemaphoreCreateCountingStatic(UBaseType_t uxMaxCount,