Home
last modified time | relevance | path

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

/hal_espressif-3.6.0/components/freertos/include/freertos/
Dtask.h3049 UBaseType_t uxIndexToClear ) PRIVILEGED_FUNCTION;
3052 #define xTaskNotifyStateClearIndexed( xTask, uxIndexToClear ) \ argument
3053 xTaskGenericNotifyStateClear( ( xTask ), ( uxIndexToClear ) )
3118 UBaseType_t uxIndexToClear,
3122 #define ulTaskNotifyValueClearIndexed( xTask, uxIndexToClear, ulBitsToClear ) \ argument
3123 ulTaskGenericNotifyValueClear( ( xTask ), ( uxIndexToClear ), ( ulBitsToClear ) )
Dmpu_prototypes.h108 UBaseType_t uxIndexToClear ) FREERTOS_SYSTEM_CALL;
110 UBaseType_t uxIndexToClear,
/hal_espressif-3.6.0/components/freertos/
Dtasks.c5873 UBaseType_t uxIndexToClear ) in xTaskGenericNotifyStateClear() argument
5878 configASSERT( uxIndexToClear < configTASK_NOTIFICATION_ARRAY_ENTRIES ); in xTaskGenericNotifyStateClear()
5886 if( pxTCB->ucNotifyState[ uxIndexToClear ] == taskNOTIFICATION_RECEIVED ) in xTaskGenericNotifyStateClear()
5888 pxTCB->ucNotifyState[ uxIndexToClear ] = taskNOT_WAITING_NOTIFICATION; in xTaskGenericNotifyStateClear()
5907 UBaseType_t uxIndexToClear, in ulTaskGenericNotifyValueClear() argument
5921 ulReturn = pxTCB->ulNotifiedValue[ uxIndexToClear ]; in ulTaskGenericNotifyValueClear()
5922 pxTCB->ulNotifiedValue[ uxIndexToClear ] &= ~ulBitsToClear; in ulTaskGenericNotifyValueClear()