Home
last modified time | relevance | path

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

/ThreadX-v6.3.0/utility/rtos_compatibility_layers/FreeRTOS/
Dtx_freertos.c1108 StaticSemaphore_t *pxSemaphoreBuffer) in xSemaphoreCreateCountingStatic() argument
1114 configASSERT(pxSemaphoreBuffer != NULL); in xSemaphoreCreateCountingStatic()
1122 TX_MEMSET(pxSemaphoreBuffer, 0, sizeof(*pxSemaphoreBuffer)); in xSemaphoreCreateCountingStatic()
1123 pxSemaphoreBuffer->max_count = uxMaxCount; in xSemaphoreCreateCountingStatic()
1124 pxSemaphoreBuffer->allocated = 0u; in xSemaphoreCreateCountingStatic()
1125 pxSemaphoreBuffer->is_mutex = 0u; in xSemaphoreCreateCountingStatic()
1127 ret = tx_semaphore_create(&pxSemaphoreBuffer->sem, "", uxInitialCount); in xSemaphoreCreateCountingStatic()
1132 return pxSemaphoreBuffer; in xSemaphoreCreateCountingStatic()
1142 SemaphoreHandle_t xSemaphoreCreateBinaryStatic(StaticSemaphore_t *pxSemaphoreBuffer) in xSemaphoreCreateBinaryStatic() argument
1144 configASSERT(pxSemaphoreBuffer != NULL); in xSemaphoreCreateBinaryStatic()
[all …]
DFreeRTOS.h446 StaticSemaphore_t *pxSemaphoreBuffer);
450 SemaphoreHandle_t xSemaphoreCreateBinaryStatic(StaticSemaphore_t *pxSemaphoreBuffer);