Fix scheduler starvation, use lists for scheduling
All checks were successful
Build documentation / build-and-deploy (push) Successful in 33s

This commit is contained in:
2026-01-22 11:54:52 +01:00
parent 7eceecf6e3
commit fea0999726
9 changed files with 83 additions and 54 deletions

View File

@@ -45,8 +45,8 @@ struct proc_resources {
struct proc {
int pid;
struct rb_node_link proc_tree_link;
struct rb_node_link cpu_run_q_link;
struct rb_node_link suspension_link;
struct list_node_link cpu_run_q_link;
struct list_node_link suspension_link;
struct list_node_link reap_link;
struct list_node_link* mappings; /* pd.lock implicitly protects this field */