Home
last modified time | relevance | path

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

/FreeRTOS-Plus-TCP-v4.0.0/source/portable/NetworkInterface/pic32mzef/
DNetworkInterface_eth.c111 static bool MacSyncFunction( void * synchHandle,
596 static bool MacSyncFunction( void * synchHandle, in MacSyncFunction() argument
602 vSemaphoreCreateBinary( *( SemaphoreHandle_t * ) synchHandle ); in MacSyncFunction()
604 return ( *( SemaphoreHandle_t * ) synchHandle == NULL ) ? false : true; in MacSyncFunction()
607 vSemaphoreDelete( *( SemaphoreHandle_t * ) synchHandle ); in MacSyncFunction()
608 *( SemaphoreHandle_t * ) synchHandle = NULL; in MacSyncFunction()
614 …return ( xSemaphoreTake( *( SemaphoreHandle_t * ) synchHandle, portMAX_DELAY ) == pdTRUE ) ? true … in MacSyncFunction()
618 … return ( xSemaphoreGive( *( SemaphoreHandle_t * ) synchHandle ) == pdTRUE ) ? true : false; in MacSyncFunction()