Bài giảng hệ điều hành nâng cao chapter 5 CPU scheduling

67 607 2
Bài giảng hệ điều hành nâng cao   chapter 5  CPU scheduling

Đang tải... (xem toàn văn)

Tài liệu hạn chế xem trước, để xem đầy đủ mời bạn chọn Tải xuống

Thông tin tài liệu

Chapter 5: CPU Scheduling Operating System Concepts – th Edition Silberschatz, Galvin and Gagne ©2009 Chapter 5: CPU Scheduling ■ Basic Concepts ■ Scheduling Criteria ■ Scheduling Algorithms ■ Thread Scheduling ■ Multiple-Processor Scheduling ■ Operating Systems Examples ■ Algorithm Evaluation Operating System Concepts – th Edition 5.2 Silberschatz, Galvin and Gagne ©2009 Objectives ■ To introduce CPU scheduling, which is the basis for multiprogrammed operating systems ■ To describe various CPU-scheduling algorithms ■ To discuss evaluation criteria for selecting a CPU-scheduling algorithm for a particular system Operating System Concepts – th Edition 5.3 Silberschatz, Galvin and Gagne ©2009 Basic Concepts ■ Maximum CPU utilization obtained with multiprogramming ■ CPU–I/O Burst Cycle – Process execution consists of a cycle of CPU execution and I/O wait ■ CPU burst distribution Operating System Concepts – th Edition 5.4 Silberschatz, Galvin and Gagne ©2009 Alternating Sequence of CPU and I/O Bursts Operating System Concepts – th Edition 5.5 Silberschatz, Galvin and Gagne ©2009 Histogram of CPU-burst Times Operating System Concepts – th Edition 5.6 Silberschatz, Galvin and Gagne ©2009 CPU Scheduler ■ Selects from among the processes in ready queue, and allocates the CPU to one of them ● ■ Queue may be ordered in various ways CPU scheduling decisions may take place when a process: Switches from running to waiting state Switches from running to ready state Switches from waiting to ready Terminates ■ Scheduling under and is nonpreemptive ■ All other scheduling is preemptive ●✎ Consider access to shared data ●✎ Consider preemption while in kernel mode ●✎ Consider interrupts occurring during crucial OS activities Operating System Concepts – th Edition 5.7 Silberschatz, Galvin and Gagne ©2009 Dispatcher ■ ■ Dispatcher module gives control of the CPU to the process selected by the short-term scheduler; this involves: ● switching context ● switching to user mode ● jumping to the proper location in the user program to restart that program Dispatch latency – time it takes for the dispatcher to stop one process and start another running Operating System Concepts – th Edition 5.8 Silberschatz, Galvin and Gagne ©2009 Scheduling Criteria ■ CPU utilization – keep the CPU as busy as possible ■ Throughput – # of processes that complete their execution per time unit ■ Turnaround time – amount of time to execute a particular process ■ Waiting time – amount of time a process has been waiting in the ready queue ■ Response time – amount of time it takes from when a request was submitted until the first response is produced, not output (for time-sharing environment) Operating System Concepts – th Edition 5.9 Silberschatz, Galvin and Gagne ©2009 Scheduling Algorithm Optimization Criteria ■ Max CPU utilization ■ Max throughput ■ Min turnaround time ■ Min waiting time ■ Min response time Operating System Concepts – th Edition 5.10 Silberschatz, Galvin and Gagne ©2009 Little’s Formula ■ n = average queue length ■ W = average waiting time in queue ■ λ = average arrival rate into queue ■ Little’s law – in steady state, processes leaving queue must equal processes arriving, thus n= λ x W ● ■ Valid for any scheduling algorithm and arrival distribution For example, if on average processes arrive per second, and normally 14 processes in queue, then average wait time per process = seconds Operating System Concepts – th Edition 5.53 Silberschatz, Galvin and Gagne ©2009 Simulations ■ Queueing models limited ■ Simulations more accurate ● Programmed model of computer system ● Clock is a variable ● Gather statistics indicating algorithm performance ● Data to drive simulation gathered via  Random number generator according to probabilities  Distributions defined mathematically or empirically  Trace tapes record sequences of real events in real systems Operating System Concepts – th Edition 5.54 Silberschatz, Galvin and Gagne ©2009 Evaluation of CPU Schedulers by Simulation Operating System Concepts – th Edition 5.55 Silberschatz, Galvin and Gagne ©2009 Implementation ■ Even simulations have limited accuracy ■ Just implement new scheduler and test in real systems ■ High cost, high risk ■ Environments vary ■ Most flexible schedulers can be modified per-site or per-system ■ Or APIs to modify priorities ■ But again environments vary Operating System Concepts – th Edition 5.56 Silberschatz, Galvin and Gagne ©2009 End of Chapter Operating System Concepts – th Edition Silberschatz, Galvin and Gagne ©2009 5.08 Operating System Concepts – th Edition 5.58 Silberschatz, Galvin and Gagne ©2009 In-5.7 Operating System Concepts – th Edition 5.59 Silberschatz, Galvin and Gagne ©2009 In-5.8 Operating System Concepts – th Edition 5.60 Silberschatz, Galvin and Gagne ©2009 In-5.9 Operating System Concepts – th Edition 5.61 Silberschatz, Galvin and Gagne ©2009 Dispatch Latency Operating System Concepts – th Edition 5.62 Silberschatz, Galvin and Gagne ©2009 Java Thread Scheduling ■ JVM Uses a Preemptive, Priority-Based Scheduling Algorithm ■ FIFO Queue is Used if There Are Multiple Threads With the Same Priority Operating System Concepts – th Edition 5.63 Silberschatz, Galvin and Gagne ©2009 Java Thread Scheduling (Cont.) JVM Schedules a Thread to Run When: The Currently Running Thread Exits the Runnable State A Higher Priority Thread Enters the Runnable State * Note – the JVM Does Not Specify Whether Threads are Time-Sliced or Not Operating System Concepts – th Edition 5.64 Silberschatz, Galvin and Gagne ©2009 Time-Slicing Since the JVM Doesn’t Ensure Time-Slicing, the yield() Method May Be Used: while (true) { // perform CPU-intensive task Thread.yield(); } This Yields Control to Another Thread of Equal Priority Operating System Concepts – th Edition 5.65 Silberschatz, Galvin and Gagne ©2009 Thread Priorities Priority Comment Thread.MIN_PRIORITY Minimum Thread Priority Thread.MAX_PRIORITY Maximum Thread Priority Thread.NORM_PRIORITY Default Thread Priority Priorities May Be Set Using setPriority() method: setPriority(Thread.NORM_PRIORITY + 2); Operating System Concepts – th Edition 5.66 Silberschatz, Galvin and Gagne ©2009 Solaris Scheduling Operating System Concepts – th Edition 5.67 Silberschatz, Galvin and Gagne ©2009 [...]... th Edition 5. 19 Silberschatz, Galvin and Gagne ©2009 Example of Priority Scheduling ProcessA arri Burst TimeT ■ P1 10 3 P2 1 1 P3 2 4 P4 1 5 P5 5 2 Priority scheduling Gantt Chart P1 P5 P2 0 ■ Priority 1 P3 6 16 P4 18 19 Average waiting time = 8.2 msec Operating System Concepts – 8 th Edition 5. 20 Silberschatz, Galvin and Gagne ©2009 Round Robin (RR) ■ Each process gets a small unit of CPU time (time... Pthread Scheduling API /* now join on each thread */ for (i= 0; i< N U M TH READ S; i+ + ) pthread join(tid[i],N U LL); } /* Each thread w illbegin controlin this function */ void *runner(void *param ) { printf("Iam a thread\n"); pthread exit(0); } Operating System Concepts – 8 th Edition 5. 33 Silberschatz, Galvin and Gagne ©2009 Multiple-Processor Scheduling ■ CPU scheduling more complex when multiple CPUs... α )τ n Operating System Concepts – 8 th Edition 5. 15 Silberschatz, Galvin and Gagne ©2009 Prediction of the Length of the Next CPU Burst Operating System Concepts – 8 th Edition 5. 16 Silberschatz, Galvin and Gagne ©2009 Examples of Exponential Averaging ■ ■ ■ α =0 ● τn+1 = τn ● Recent history does not count α =1 ● τn+1 = α tn ● Only the actual last CPU burst counts If we expand the formula, we get:... Concepts – 8 th Edition 5. 17 Silberschatz, Galvin and Gagne ©2009 Example of Shortest-remaining-time-first ■ Now we add the concepts of varying arrival times and preemption to the analysis ProcessA arri Arrival TimeT ■ P1 0 8 P2 1 4 P3 2 9 P4 3 5 Preemptive SJF Gantt Chart 0 5 1 P1 P4 P2 P1 ■ Burst Time 10 P3 17 26 Average waiting time = [(10-1)+(1-1)+(17-2) +5- 3)]/4 = 26/4 = 6 .5 msec Operating System... Operating System Concepts – 8 th Edition 5. 18 Silberschatz, Galvin and Gagne ©2009 Priority Scheduling ■ A priority number (integer) is associated with each process ■ The CPU is allocated to the process with the highest priority (smallest integer ≡ highest priority) ● Preemptive ● Nonpreemptive ■ SJF is priority scheduling where priority is the inverse of predicted next CPU burst time ■ Problem ≡ Starvation... is knowing the length of the next CPU request ● Could ask the user Operating System Concepts – 8 th Edition 5. 13 Silberschatz, Galvin and Gagne ©2009 Example of SJF ProcessArriva ■ P1 0.0 6 P2 2.0 8 P3 4.0 7 P4 5. 0 3 l Time Burst Time SJF scheduling chart P4 3 0 ■ P3 P1 9 P2 16 24 Average waiting time = (3 + 16 + 9 + 0) / 4 = 7 Operating System Concepts – 8 th Edition 5. 14 Silberschatz, Galvin and Gagne... Concepts – 8 th Edition 5. 25 Silberschatz, Galvin and Gagne ©2009 Multilevel Queue Scheduling Operating System Concepts – 8 th Edition 5. 26 Silberschatz, Galvin and Gagne ©2009 Multilevel Feedback Queue ■ A process can move between the various queues; aging can be implemented this way ■ Multilevel-feedback-queue scheduler defined by the following parameters: ● number of queues ● scheduling algorithms... PTHREAD_SCOPE_PROCESS schedules threads using PCS scheduling ● PTHREAD_SCOPE_SYSTEM schedules threads using SCS scheduling Can be limited by OS – Linux and Mac OS X only allow PTHREAD_SCOPE_SYSTEM Operating System Concepts – 8 th Edition 5. 31 Silberschatz, Galvin and Gagne ©2009 Pthread Scheduling API # include < pthread.h> # include < stdio.h> # defi n e N U M TH R EAD S 5 int m ain(int argc,char *argv[]) { int... Galvin and Gagne ©2009 Determining Length of Next CPU Burst ■ Can only estimate the length – should be similar to the previous one ● ■ Then pick process with shortest predicted next CPU burst Can be done by using the length of previous CPU bursts, using exponential averaging 1 t n = actual length of n th CPU burst 2 τ n +1 = predicted value for the next CPU burst 3 α , 0 ≤ α ≤ 1 4 Define : ■ Commonly,... better than previous case ■ Convoy effect - short process behind long process ● P1 6 30 Consider one CPU- bound and many I/O-bound processes Operating System Concepts – 8 th Edition 5. 12 Silberschatz, Galvin and Gagne ©2009 Shortest-Job-First (SJF) Scheduling ■ Associate with each process the length of its next CPU burst ● ■ Use these lengths to schedule the process with the shortest time SJF is optimal – .. .Chapter 5: CPU Scheduling ■ Basic Concepts ■ Scheduling Criteria ■ Scheduling Algorithms ■ Thread Scheduling ■ Multiple-Processor Scheduling ■ Operating Systems... – th Edition 5. 2 Silberschatz, Galvin and Gagne ©2009 Objectives ■ To introduce CPU scheduling, which is the basis for multiprogrammed operating systems ■ To describe various CPU- scheduling algorithms... Sequence of CPU and I/O Bursts Operating System Concepts – th Edition 5. 5 Silberschatz, Galvin and Gagne ©2009 Histogram of CPU- burst Times Operating System Concepts – th Edition 5. 6 Silberschatz,

Ngày đăng: 03/12/2015, 23:42

Từ khóa liên quan

Mục lục

  • Slide 1

  • Chapter 5: CPU Scheduling

  • Objectives

  • Basic Concepts

  • Alternating Sequence of CPU and I/O Bursts

  • Histogram of CPU-burst Times

  • CPU Scheduler

  • Dispatcher

  • Scheduling Criteria

  • Scheduling Algorithm Optimization Criteria

  • First-Come, First-Served (FCFS) Scheduling

  • FCFS Scheduling (Cont.)

  • Shortest-Job-First (SJF) Scheduling

  • Example of SJF

  • Determining Length of Next CPU Burst

  • Prediction of the Length of the Next CPU Burst

  • Examples of Exponential Averaging

  • Example of Shortest-remaining-time-first

  • Priority Scheduling

  • Example of Priority Scheduling

Tài liệu cùng người dùng

Tài liệu liên quan