Home
last modified time | relevance | path

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

/Kernel-v11.0.1/
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…
74 …vListInsertEnd( ( List_t * ) &( pxReadyCoRoutineLists[ ( pxCRCB )->uxPriority ] ), &( ( pxCRCB )->…
171 List_t * pxEventList ) in vCoRoutineAddToDelayedList()
193 …vListInsert( ( List_t * ) pxOverflowDelayedCoRoutineList, ( ListItem_t * ) &( pxCurrentCoRoutine->… in vCoRoutineAddToDelayedList()
199 …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()
218 List_t * const pxList = pxItemToRemove->pxContainer; in uxListRemove()
Dtasks.c243 List_t * pxTemp; \
452 PRIVILEGED_DATA static List_t pxReadyTasksLists[ configMAX_PRIORITIES ]; /**< Prioritised ready tas…
453 PRIVILEGED_DATA static List_t xDelayedTaskList1; /**< Delayed tasks. */
454 PRIVILEGED_DATA static List_t xDelayedTaskList2; /**< Delayed tasks (two li…
455 PRIVILEGED_DATA static List_t * volatile pxDelayedTaskList; /**< Points to the delayed…
456 PRIVILEGED_DATA static List_t * volatile pxOverflowDelayedTaskList; /**< Points to the delayed…
457 PRIVILEGED_DATA static List_t xPendingReadyList; /**< Tasks that have been …
461 …PRIVILEGED_DATA static List_t xTasksWaitingTermination; /**< Tasks that have been deleted - but th…
468 PRIVILEGED_DATA static List_t xSuspendedTaskList; /**< Tasks that are currently suspended. */
629 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.c51 List_t xTasksWaitingForBits; /**< List of tasks waiting for a bit to be set. */
544 List_t const * pxList; in xEventGroupSetBits()
641 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.txt767 + The uxNumberOfItems member of List_t is now volatile - solving an issue
/Kernel-v11.0.1/include/
Dlist.h179 } List_t; typedef
287 List_t * const pxConstList = ( pxList ); \
318 List_t * const pxList = ( pxItemToRemove )->pxContainer; \
433 void vListInitialise( List_t * const pxList ) PRIVILEGED_FUNCTION;
457 void vListInsert( List_t * const pxList,
479 void vListInsertEnd( List_t * const pxList,
Dcroutine.h738 List_t * pxEventList );
747 BaseType_t xCoRoutineRemoveFromEventList( const List_t * pxEventList );
Dtask.h3500 void vTaskPlaceOnEventList( List_t * const pxEventList,
3502 void vTaskPlaceOnUnorderedEventList( List_t * pxEventList,
3517 void vTaskPlaceOnEventListRestricted( List_t * const pxEventList,
3545 BaseType_t xTaskRemoveFromEventList( const List_t * const pxEventList ) PRIVILEGED_FUNCTION;
DFreeRTOS.h2897 #define xList List_t