Home
last modified time | relevance | path

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

/hal_espressif-3.6.0/components/freertos/
Dtasks.c342 volatile uint32_t ulNotifiedValue[ configTASK_NOTIFICATION_ARRAY_ENTRIES ]; member
1100 …memset( ( void * ) &( pxNewTCB->ulNotifiedValue[ 0 ] ), 0x00, sizeof( pxNewTCB->ulNotifiedValue ) … in prvInitialiseNewTask()
5361 if( pxCurrentTCB[xPortGetCoreID()]->ulNotifiedValue[ uxIndexToWait ] == 0UL ) in ulTaskGenericNotifyTake()
5392 ulReturn = pxCurrentTCB[xPortGetCoreID()]->ulNotifiedValue[ uxIndexToWait ]; in ulTaskGenericNotifyTake()
5398 pxCurrentTCB[xPortGetCoreID()]->ulNotifiedValue[ uxIndexToWait ] = 0UL; in ulTaskGenericNotifyTake()
5402 … pxCurrentTCB[xPortGetCoreID()]->ulNotifiedValue[ uxIndexToWait ] = ulReturn - ( uint32_t ) 1; in ulTaskGenericNotifyTake()
5452 … pxCurrentTCB[xPortGetCoreID()]->ulNotifiedValue[ uxIndexToWait ] &= ~ulBitsToClearOnEntry; in xTaskGenericNotifyWait()
5488 … *pulNotificationValue = pxCurrentTCB[xPortGetCoreID()]->ulNotifiedValue[ uxIndexToWait ]; in xTaskGenericNotifyWait()
5504 … pxCurrentTCB[xPortGetCoreID()]->ulNotifiedValue[ uxIndexToWait ] &= ~ulBitsToClearOnExit; in xTaskGenericNotifyWait()
5538 *pulPreviousNotificationValue = pxTCB->ulNotifiedValue[ uxIndexToNotify ]; in xTaskGenericNotify()
[all …]