Home
last modified time | relevance | path

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

/kernel/liteos_a/kernel/base/sched/
Dlos_priority.c143 LOS_DL_LIST *priQueList = &queueList->priQueList[0]; in PriQueHeadInsert() local
157 if (LOS_ListEmpty(&priQueList[priority])) { in PriQueHeadInsert()
161 LOS_ListHeadInsert(&priQueList[priority], priQue); in PriQueHeadInsert()
168 LOS_DL_LIST *priQueList = &queueList->priQueList[0]; in PriQueTailInsert() local
182 if (LOS_ListEmpty(&priQueList[priority])) { in PriQueTailInsert()
186 LOS_ListTailInsert(&priQueList[priority], priQue); in PriQueTailInsert()
193 LOS_DL_LIST *priQueList = &queueList->priQueList[0]; in PriQueDelete() local
198 if (LOS_ListEmpty(&priQueList[priority])) { in PriQueDelete()
550 LOS_DL_LIST *priQue = &queueList->priQueList[0]; in HPFSchedPolicyInit()
/kernel/liteos_a/kernel/base/include/
Dlos_sched_pri.h95 LOS_DL_LIST priQueList[OS_PRIORITY_QUEUE_NUM]; member
690 … LOS_DL_LIST_FOR_EACH_ENTRY(newTask, &queueList->priQueList[priority], LosTaskCB, pendList) { in HPFRunqueueTopTaskGet()