Home
last modified time | relevance | path

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

/Kernel-v11.1.0/
Dcroutine.c46 …static List_t pxReadyCoRoutineLists[ configMAX_CO_ROUTINE_PRIORITIES ]; /**< Prioritised ready co-…
47 …static List_t xDelayedCoRoutineList1; /**< Delayed co-routines. …
48 …static List_t xDelayedCoRoutineList2; /**< Delayed co-routines (…
49 …static List_t * pxDelayedCoRoutineList = NULL; /**< Points to the delayed…
50 …static List_t * pxOverflowDelayedCoRoutineList = NULL; /**< Points to the delayed…
51 …static List_t xPendingReadyCoRoutineList; /**< Holds co-routines tha…
76 …vListInsertEnd( ( List_t * ) &( pxReadyCoRoutineLists[ ( pxCRCB )->uxPriority ] ), &( ( pxCRCB )->…
173 List_t * pxEventList ) in vCoRoutineAddToDelayedList()
195 …vListInsert( ( List_t * ) pxOverflowDelayedCoRoutineList, ( ListItem_t * ) &( pxCurrentCoRoutine->… in vCoRoutineAddToDelayedList()
201 …vListInsert( ( List_t * ) pxDelayedCoRoutineList, ( ListItem_t * ) &( pxCurrentCoRoutine->xGeneric… in vCoRoutineAddToDelayedList()
[all …]
Dlist.c49 void vListInitialise( List_t * const pxList ) in vListInitialise()
105 void vListInsertEnd( List_t * const pxList, in vListInsertEnd()
139 void vListInsert( List_t * const pxList, in vListInsert()
219 List_t * const pxList = pxItemToRemove->pxContainer; in uxListRemove()
Dtasks.c250 List_t * pxTemp; \
459 PRIVILEGED_DATA static List_t pxReadyTasksLists[ configMAX_PRIORITIES ]; /**< Prioritised ready tas…
460 PRIVILEGED_DATA static List_t xDelayedTaskList1; /**< Delayed tasks. */
461 PRIVILEGED_DATA static List_t xDelayedTaskList2; /**< Delayed tasks (two li…
462 PRIVILEGED_DATA static List_t * volatile pxDelayedTaskList; /**< Points to the delayed…
463 PRIVILEGED_DATA static List_t * volatile pxOverflowDelayedTaskList; /**< Points to the delayed…
464 PRIVILEGED_DATA static List_t xPendingReadyList; /**< Tasks that have been …
468 …PRIVILEGED_DATA static List_t xTasksWaitingTermination; /**< Tasks that have been deleted - but th…
475 PRIVILEGED_DATA static List_t xSuspendedTaskList; /**< Tasks that are currently suspended. */
636 List_t * pxList,
[all …]
Dtimers.c143 PRIVILEGED_DATA static List_t xActiveTimerList1;
144 PRIVILEGED_DATA static List_t xActiveTimerList2;
145 PRIVILEGED_DATA static List_t * pxCurrentTimerList;
146 PRIVILEGED_DATA static List_t * pxOverflowTimerList;
1089 List_t * pxTemp; in prvSwitchTimerLists()
Devent_groups.c57 List_t xTasksWaitingForBits; /**< List of tasks waiting for a bit to be set. */
553 List_t const * pxList; in xEventGroupSetBits()
650 const List_t * pxTasksWaitingForBits; in vEventGroupDelete()
Dqueue.c114List_t xTasksWaitingToSend; /**< List of tasks that are blocked waiting to post onto t…
115List_t xTasksWaitingToReceive; /**< List of tasks that are blocked waiting to read from t…
DHistory.txt26 + Update uxTaskGetSystemState to not use the pxIndex member of the List_t
844 + The uxNumberOfItems member of List_t is now volatile - solving an issue
/Kernel-v11.1.0/include/
Dlist.h179 } List_t; typedef
288 List_t * const pxConstList = ( pxList ); \
326List_t * const pxList = ( pxItemToRemove )->pxContainer; \
441 void vListInitialise( List_t * const pxList ) PRIVILEGED_FUNCTION;
465 void vListInsert( List_t * const pxList,
487 void vListInsertEnd( List_t * const pxList,
Dcroutine.h738 List_t * pxEventList );
747 BaseType_t xCoRoutineRemoveFromEventList( const List_t * pxEventList );
Dtask.h3515 void vTaskPlaceOnEventList( List_t * const pxEventList,
3517 void vTaskPlaceOnUnorderedEventList( List_t * pxEventList,
3532 void vTaskPlaceOnEventListRestricted( List_t * const pxEventList,
3560 BaseType_t xTaskRemoveFromEventList( const List_t * const pxEventList ) PRIVILEGED_FUNCTION;
DFreeRTOS.h2969 #define xList List_t