Home
last modified time | relevance | path

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

/ThreadX-v6.3.0/utility/rtos_compatibility_layers/FreeRTOS/
Dtx_freertos.c1072 SemaphoreHandle_t xSemaphoreCreateCounting(UBaseType_t uxMaxCount, in xSemaphoreCreateCounting() argument
1078 configASSERT(uxMaxCount != 0u); in xSemaphoreCreateCounting()
1079 configASSERT(uxInitialCount <= uxMaxCount); in xSemaphoreCreateCounting()
1093 p_sem->max_count = uxMaxCount; in xSemaphoreCreateCounting()
1106 SemaphoreHandle_t xSemaphoreCreateCountingStatic(UBaseType_t uxMaxCount, in xSemaphoreCreateCountingStatic() argument
1112 configASSERT(uxMaxCount != 0u); in xSemaphoreCreateCountingStatic()
1113 configASSERT(uxInitialCount <= uxMaxCount); in xSemaphoreCreateCountingStatic()
1123 pxSemaphoreBuffer->max_count = uxMaxCount; in xSemaphoreCreateCountingStatic()
DFreeRTOS.h441 SemaphoreHandle_t xSemaphoreCreateCounting(UBaseType_t uxMaxCount,
444 SemaphoreHandle_t xSemaphoreCreateCountingStatic(UBaseType_t uxMaxCount,