Home
last modified time | relevance | path

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

/hal_espressif-3.6.0/components/freertos/
Dtasks.c240 …vListInsertEnd( &( pxReadyTasksLists[ ( pxTCB )->uxPriority ] ), &( ( pxTCB )->xStateListItem ) );…
286 …ListItem_t xStateListItem; /*< The list that the state list item of a task is ref… member
1045 vListInitialiseItem( &( pxNewTCB->xStateListItem ) ); in prvInitialiseNewTask()
1050 listSET_LIST_ITEM_OWNER( &( pxNewTCB->xStateListItem ), pxNewTCB ); in prvInitialiseNewTask()
1340 if( uxListRemove( &( pxTCB->xStateListItem ) ) == ( UBaseType_t ) 0 ) in vTaskDelete()
1377 vListInsertEnd( &xTasksWaitingTermination, &( pxTCB->xStateListItem ) ); in vTaskDelete()
1626 pxStateList = listLIST_ITEM_CONTAINER( &( pxTCB->xStateListItem ) ); in eTaskGetState()
1909 …D_WITHIN( &( pxReadyTasksLists[ uxPriorityUsedOnEntry ] ), &( pxTCB->xStateListItem ) ) != pdFALSE… in vTaskPrioritySet()
1914 if( uxListRemove( &( pxTCB->xStateListItem ) ) == ( UBaseType_t ) 0 ) in vTaskPrioritySet()
1970 if( uxListRemove( &( pxTCB->xStateListItem ) ) == ( UBaseType_t ) 0 ) in vTaskSuspend()
[all …]
/hal_espressif-3.6.0/components/freertos/include/esp_additions/
Dfreertos_tasks_c_additions.h35 return &(((TCB_t*)pxTCB)->xStateListItem); in pxTCBGetStateListItem()