Reputation: 91
In operating system the scheduler is invoked after the system call api or after a hardware interrupt processing.
I am unable to get and found how and who calls the scheduler???
Upvotes: 4
Views: 3655
Reputation: 163
The scheduler will be invoked if the current thread/process is going to sleep/wait for some event/resource to be released.
In one of the cases of worker threads which executes the bottom half in the form of workqueues, it will run in a while loop and check if the workqueue list is empty. If found empty it will mark itself as TASK_INTERRUPTABLE
, calls schedule()
and then goes to sleep.
If the workqueque list is not empty the worker thread marks itself RUNNING
and executes the deferred bottom halfs.
So in general schedule()
is called by a task which wants to sleep and thus hands over the cpu to other processes/tasks.
Upvotes: 2
Reputation: 11
I think in case of round robin algorithm followed for scheduling some process some timer is being programmed based on time slice value which is going to invoke scheduler after that time slice gets over using interrupt functionality. and that preempt the current executing thread save its context and process ready queue figure out which thread to run next restore its context from thread stack and set PC value based on new thread's previous preempt value now new thread starts running. https://en.wikipedia.org/wiki/Programmable_interval_timer
Upvotes: -1
Reputation: 3768
The scheduler is invoked:
TIF_NEED_RESCHED
flag is set, on the nearest possible occasion:
preempt_enable()
cond_resched()
callschedule()
callUpvotes: 4