We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1045ec9 commit 677aba4Copy full SHA for 677aba4
kernel/src/kernel/tasking/scheduler/scheduler_round_robin.cpp
@@ -51,7 +51,8 @@ g_schedule_entry* schedulerGetNextTask(g_tasking_local* local)
51
}
52
53
// Check if there is a global "preferred task" to do next
54
- if(preferredTask != G_TID_NONE)
+ // TODO The current yield is not "fair" and makes the system slower
55
+ if(false && preferredTask != G_TID_NONE)
56
{
57
while(entry)
58
0 commit comments