Home
last modified time | relevance | path

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

/kernel/liteos_m/kernel/src/
Dlos_sched.c57 STATIC LOS_DL_LIST g_priQueueList[OS_PRIORITY_QUEUE_NUM]; variable
148 if (LOS_ListEmpty(&g_priQueueList[priority])) { in OsSchedPriQueueEnHead()
152 LOS_ListAdd(&g_priQueueList[priority], priqueueItem); in OsSchedPriQueueEnHead()
157 if (LOS_ListEmpty(&g_priQueueList[priority])) { in OsSchedPriQueueEnTail()
161 LOS_ListTailInsert(&g_priQueueList[priority], priqueueItem); in OsSchedPriQueueEnTail()
167 if (LOS_ListEmpty(&g_priQueueList[priority])) { in OsSchedPriQueueDelete()
464 LOS_ListInit(&g_priQueueList[pri]); in OsSchedInit()
485 …newTask = LOS_DL_LIST_ENTRY(((LOS_DL_LIST *)&g_priQueueList[priority])->pstNext, LosTaskCB, pendLi… in OsGetTopTask()