Home
last modified time | relevance | path

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

/hal_nxp-3.5.0/mcux/mcux-sdk/components/osa/
Dfsl_os_abstraction_bm.c88 volatile uint8_t semCount; /*!< The count value of the object */ member
564 pSemStruct->semCount = (uint8_t)initValue; in OSA_SemaphoreCreate()
593 pSemStruct->semCount = 1U; in OSA_SemaphoreCreateBinary()
654 if (0U != pSemStruct->semCount) in OSA_SemaphoreWait()
657 pSemStruct->semCount--; in OSA_SemaphoreWait()
721 (0xFFU == pSemStruct->semCount)) || /* For counting semaphore: the max value is 0xFF */ in OSA_SemaphorePost()
722 ((0x01U == pSemStruct->semCount) && in OSA_SemaphorePost()
729 ++pSemStruct->semCount; in OSA_SemaphorePost()