The HyperNews Linux KHG Discussion Pages

Untitled

Forum: The Linux Kernel Hackers' Guide
Re: Question scheduler Question (Arne Spetzler)
Keywords: scheduler sleep priority
Date: Sun, 08 Mar 1998 00:46:24 GMT
From: Ovsov <ovsov@bveb.belpak.minsk.by>

Actually Linux's wake_up_process does nothing but changing a process' state from TASK_(UN)INTERRUPTIBLE to TASK_RUNNING and then it may be chosen for running the next time schedule() is invoked depending on its priority (counter-parameter in task_struct for the processes scheduled under OTHER-policy and rt_proirity-parameter for real-time processes scheduled under FIFO or RobinRound (RR)).

Best regards. Kostya.