Searched refs:xMutex (Results 1 – 2 of 2) sorted by relevance
465 BaseType_t xSemaphoreTakeRecursive(SemaphoreHandle_t xMutex, TickType_t xTicksToWait);471 BaseType_t xSemaphoreGiveRecursive(SemaphoreHandle_t xMutex);475 TaskHandle_t xSemaphoreGetMutexHolder(SemaphoreHandle_t xMutex);477 TaskHandle_t xSemaphoreGetMutexHolderFromISR(SemaphoreHandle_t xMutex);
1334 BaseType_t xSemaphoreTakeRecursive(SemaphoreHandle_t xMutex, TickType_t xTicksToWait) in xSemaphoreTakeRecursive() argument1339 configASSERT(xMutex != NULL); in xSemaphoreTakeRecursive()1347 if(xMutex->is_mutex == 1u) { in xSemaphoreTakeRecursive()1348 ret = tx_mutex_get(&xMutex->mutex, timeout); in xSemaphoreTakeRecursive()1353 ret = tx_semaphore_get(&xMutex->sem, timeout); in xSemaphoreTakeRecursive()1424 BaseType_t xSemaphoreGiveRecursive(SemaphoreHandle_t xMutex) in xSemaphoreGiveRecursive() argument1427 configASSERT(xMutex != NULL); in xSemaphoreGiveRecursive()1429 return xSemaphoreGive(xMutex); in xSemaphoreGiveRecursive()1448 TaskHandle_t xSemaphoreGetMutexHolder(SemaphoreHandle_t xMutex) in xSemaphoreGetMutexHolder() argument1450 configASSERT(xMutex != NULL); in xSemaphoreGetMutexHolder()[all …]