Implement priority donation helper function with propagation, w/ T

This commit is contained in:
sBubshait
2024-10-20 19:42:35 +01:00
parent f98e4bc81c
commit 343ac55d37
3 changed files with 23 additions and 1 deletions

View File

@@ -150,6 +150,8 @@ void thread_set_nice (int);
int thread_get_recent_cpu (void);
int thread_get_load_avg (void);
void ready_list_reorder (void);
/* Returns true iff the priority of the first list element's thread is greater
than that of the second list element's thread. */
list_less_func thread_priority_greater;