You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
staticList_txDelayedCoRoutineList2; /*< Delayed co-routines (two lists are used - one for delays that have overflowed the current tick count. */
49
-
staticList_t*pxDelayedCoRoutineList=NULL; /*< Points to the delayed co-routine list currently being used. */
50
-
staticList_t*pxOverflowDelayedCoRoutineList=NULL; /*< Points to the delayed co-routine list currently being used to hold co-routines that have overflowed the current tick count. */
51
-
staticList_txPendingReadyCoRoutineList; /*< Holds co-routines that have been readied by an external event. They cannot be added directly to the ready lists as the ready lists cannot be accessed by interrupts. */
staticList_txDelayedCoRoutineList2; /**< Delayed co-routines (two lists are used - one for delays that have overflowed the current tick count. */
49
+
staticList_t*pxDelayedCoRoutineList=NULL; /**< Points to the delayed co-routine list currently being used. */
50
+
staticList_t*pxOverflowDelayedCoRoutineList=NULL; /**< Points to the delayed co-routine list currently being used to hold co-routines that have overflowed the current tick count. */
51
+
staticList_txPendingReadyCoRoutineList; /**< Holds co-routines that have been readied by an external event. They cannot be added directly to the ready lists as the ready lists cannot be accessed by interrupts. */
52
52
53
53
/* Other file private variables. --------------------------------*/
0 commit comments