Home
last modified time | relevance | path

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

/ThreadX-v6.4.1/utility/rtos_compatibility_layers/FreeRTOS/
Dtx_freertos.c1111 StaticSemaphore_t *pxSemaphoreBuffer) in xSemaphoreCreateCountingStatic() argument
1117 configASSERT(pxSemaphoreBuffer != NULL); in xSemaphoreCreateCountingStatic()
1125 TX_MEMSET(pxSemaphoreBuffer, 0, sizeof(*pxSemaphoreBuffer)); in xSemaphoreCreateCountingStatic()
1126 pxSemaphoreBuffer->max_count = uxMaxCount; in xSemaphoreCreateCountingStatic()
1127 pxSemaphoreBuffer->allocated = 0u; in xSemaphoreCreateCountingStatic()
1128 pxSemaphoreBuffer->is_mutex = 0u; in xSemaphoreCreateCountingStatic()
1130 ret = tx_semaphore_create(&pxSemaphoreBuffer->sem, "", uxInitialCount); in xSemaphoreCreateCountingStatic()
1135 return pxSemaphoreBuffer; in xSemaphoreCreateCountingStatic()
1145 SemaphoreHandle_t xSemaphoreCreateBinaryStatic(StaticSemaphore_t *pxSemaphoreBuffer) in xSemaphoreCreateBinaryStatic() argument
1147 configASSERT(pxSemaphoreBuffer != NULL); in xSemaphoreCreateBinaryStatic()
[all …]
DFreeRTOS.h445 StaticSemaphore_t *pxSemaphoreBuffer);
449 SemaphoreHandle_t xSemaphoreCreateBinaryStatic(StaticSemaphore_t *pxSemaphoreBuffer);