Searched refs:semCount (Results 1 – 1 of 1) sorted by relevance
88 volatile uint8_t semCount; /*!< The count value of the object */ member564 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()