Hello,
I want to understand the flow of code of process scheduler of linux kernel. What I have understood is that The task marks itself as sleeping,
puts itself on a wait queue,
removes itself from the red-black tree of runnable, and
calls schedule() to select a new process to execute.
for Waking back up
The task is set as runnable,
removed from the wait queue,
and added back to the red-black tree.
_______________________________________________ Kernelnewbies mailing list Kernelnewbies@xxxxxxxxxxxxxxxxx http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies