Computer Science - Operating Systems Concepts - Discussion

Discussion Forum : Operating Systems Concepts - Section 3 (Q.No. 35)
35.
The main function of the dispatcher (the portion of the process scheduler) is
swapping a process to the disk
assigning ready process to the CPU
suspending some of the processes when the CPU load is high
bring processes from the disk to the main memory
None of the above
Answer: Option
Explanation:
No answer description is available. Let's discuss.
Discussion:
1 comments Page 1 of 1.

Akhilesh said:   8 years ago
Normally there are 3 types of schedulers available in operating systems.

1. Long term scheduler
2. Mid term scheduler
3. Short term scheduler

The short term scheduler is also called as the dispatcher which selects the process from the waiting queue and allocates the CPU to that process.

Whereas the Long term scheduler (Admission scheduler) decides which process should be placed in the main memory and updates the waiting queue. This long scheduler is important in the large bound systems like super computers and may not be used frequently as the short term scheduler.

The mid term scheduler available in all systems which is responsible for the swapping in and out operations which means loading the process into, main memory from secondary memory (swap in) and take out the process from main memory and store it into the secondary memory (swap out).

Post your comments here:

Your comments will be displayed after verification.