Home
last modified time | relevance | path

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

/DragonOS-0.1.2/kernel/src/sched/
Dcfs.c6 struct sched_queue_t sched_cfs_ready_queue[MAX_CPU_NUM]; // 就绪队列 variable
15 if (list_empty(&sched_cfs_ready_queue[proc_current_cpu_id].proc_queue.list)) in sched_cfs_dequeue()
21 …struct process_control_block *proc = container_of(list_next(&sched_cfs_ready_queue[proc_current_cp… in sched_cfs_dequeue()
24 --sched_cfs_ready_queue[proc_current_cpu_id].count; in sched_cfs_dequeue()
37 …struct process_control_block *proc = container_of(list_next(&sched_cfs_ready_queue[proc_current_cp… in sched_cfs_enqueue()
38 if ((list_empty(&sched_cfs_ready_queue[proc_current_cpu_id].proc_queue.list)) == 0) in sched_cfs_enqueue()
46 ++sched_cfs_ready_queue[proc_current_cpu_id].count; in sched_cfs_enqueue()
69 if (sched_cfs_ready_queue[proc_current_cpu_id].cpu_exec_proc_jiffies <= 0) in sched_cfs()
75sched_cfs_ready_queue[proc_current_cpu_id].cpu_exec_proc_jiffies = 4 / sched_cfs_ready_queue[proc_… in sched_cfs()
79sched_cfs_ready_queue[proc_current_cpu_id].cpu_exec_proc_jiffies = (4 / sched_cfs_ready_queue[proc… in sched_cfs()
[all …]
Dcfs.h14 extern struct sched_queue_t sched_cfs_ready_queue[MAX_CPU_NUM]; // 就绪队列