Advertisement
Guest User

Untitled

a guest
Jan 21st, 2020
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.10 KB | None | 0 0
  1. First Come First Served (FCFS)
  2. The order they arrive in the queue is the order they are executed in.
  3. Shortest Job First (SJF)
  4. The one with the shortest time taken will be put first in the queue. This is preemptive.
  5. Shortest Remaining Time First (SRT)
  6. It is preemptive mode of SJF algorithm in which jobs are schedule according to shortest remaining time.
  7. Multilevel Feedback Queue (MLFQ)
  8. It allows the process to move in between queues. The idea is to separate processes according to the characteristics of their CPU bursts. If a process uses too much CPU time, it is moved to a lower-priority queue.
  9. Round Robin Scheduling
  10. Each process is assigned a fixed time(Time Quantum/Time Slice) in cyclic way.It is designed especially for the time-sharing system. The ready queue is treated as a circular queue. The CPU scheduler goes around the ready queue, allocating the CPU to each process for a time interval of up to 1-time quantum. To implement Round Robin scheduling, we keep the ready queue as a FIFO queue of processes. A context switch will be executed, and the process will be put at the tail of the ready queue. The CPU scheduler will then select the next process in the ready queue. This is preemptive scheduling.
  11. Preemptive scheduling is used when a process switches from running state to ready state or from waiting state to ready state. The resources (mainly CPU cycles) are allocated to the process for the limited amount of time and then is taken away, and the process is again placed back in the ready queue if that process still has CPU burst time remaining. That process stays in ready queue till it gets next chance to execute.
  12. Non-preemptive Scheduling is used when a process terminates, or a process switches from running to waiting state. In this scheduling, once the resources (CPU cycles) is allocated to a process, the process holds the CPU till it gets terminated or it reaches a waiting state. In case of non-preemptive scheduling does not interrupt a process running CPU in middle of the execution. Instead, it waits till the process complete its CPU burst time and then it can allocate the CPU to another process.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement