Home
last modified time | relevance | path

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

/FreeRTOS-Plus/Source/Reliance-Edge/os/freertos/services/
A Dosmutex.c39 static SemaphoreHandle_t xMutex; variable
61 xMutex = xSemaphoreCreateMutexStatic( &xMutexBuffer ); in RedOsMutexInit()
63 if( xMutex == NULL ) in RedOsMutexInit()
72 xMutex = xSemaphoreCreateMutex(); in RedOsMutexInit()
74 if( xMutex == NULL ) in RedOsMutexInit()
96 vSemaphoreDelete( xMutex ); in RedOsMutexUninit()
97 xMutex = NULL; in RedOsMutexUninit()
111 while( xSemaphoreTake( xMutex, portMAX_DELAY ) != pdTRUE ) in RedOsMutexAcquire()
130 xSuccess = xSemaphoreGive( xMutex ); in RedOsMutexRelease()
/FreeRTOS-Plus/Test/FreeRTOS-Cellular-Interface/Integration/
A Dcellular_platform.c89 lockResult = xSemaphoreTakeRecursive( ( SemaphoreHandle_t ) &pMutex->xMutex, timeout ); in prIotMutexTimedLock()
93 lockResult = xSemaphoreTake( ( SemaphoreHandle_t ) &pMutex->xMutex, timeout ); in prIotMutexTimedLock()
162 xSemaphore = xSemaphoreCreateRecursiveMutexStatic( &pNewMutex->xMutex ); in PlatformMutex_Create()
166 xSemaphore = xSemaphoreCreateMutexStatic( &pNewMutex->xMutex ); in PlatformMutex_Create()
198 vSemaphoreDelete( ( SemaphoreHandle_t ) &pMutex->xMutex ); in PlatformMutex_Destroy()
226 ( void ) xSemaphoreGiveRecursive( ( SemaphoreHandle_t ) &pMutex->xMutex ); in PlatformMutex_Unlock()
230 ( void ) xSemaphoreGive( ( SemaphoreHandle_t ) &pMutex->xMutex ); in PlatformMutex_Unlock()
A Dcellular_platform.h100 StaticSemaphore_t xMutex; /**< FreeRTOS mutex. */ member
/FreeRTOS-Plus/Demo/FreeRTOS_Cellular_Interface_Windows_Simulator/Common/
A Dcellular_platform.c89 lockResult = xSemaphoreTakeRecursive( ( SemaphoreHandle_t ) &pMutex->xMutex, timeout ); in prIotMutexTimedLock()
93 lockResult = xSemaphoreTake( ( SemaphoreHandle_t ) &pMutex->xMutex, timeout ); in prIotMutexTimedLock()
162 xSemaphore = xSemaphoreCreateRecursiveMutexStatic( &pNewMutex->xMutex ); in PlatformMutex_Create()
166 xSemaphore = xSemaphoreCreateMutexStatic( &pNewMutex->xMutex ); in PlatformMutex_Create()
198 vSemaphoreDelete( ( SemaphoreHandle_t ) &pMutex->xMutex ); in PlatformMutex_Destroy()
226 ( void ) xSemaphoreGiveRecursive( ( SemaphoreHandle_t ) &pMutex->xMutex ); in PlatformMutex_Unlock()
230 ( void ) xSemaphoreGive( ( SemaphoreHandle_t ) &pMutex->xMutex ); in PlatformMutex_Unlock()
A Dcellular_platform.h109 StaticSemaphore_t xMutex; /**< FreeRTOS mutex. */ member
/FreeRTOS-Plus/Demo/coreSNTP_Windows_Simulator/
A DSNTPClientTask.c272 static SemaphoreHandle_t xMutex = NULL; variable
866 xSemaphoreTake( xMutex, portMAX_DELAY ); in sntpClient_GetTime()
874 xSemaphoreGive( xMutex ); in sntpClient_GetTime()
918 xSemaphoreTake( xMutex, portMAX_DELAY ); in sntpClient_SetTime()
956 xSemaphoreGive( xMutex ); in sntpClient_SetTime()
1338 xMutex = xSemaphoreCreateMutex(); in initializeSystemClock()
1339 configASSERT( xMutex ); in initializeSystemClock()
1676 xSemaphoreTake( xMutex, portMAX_DELAY ); in systemGetWallClockTime()
1685 xSemaphoreGive( xMutex ); in systemGetWallClockTime()

Completed in 15 milliseconds