CS162 9-10

lecture9

thread

 

CS162 9-10_第1张图片

 

CS162 9-10_第2张图片

CS162 9-10_第3张图片

CS162 9-10_第4张图片 

CS162 9-10_第5张图片 

 

lecture10

I/O层

CS162 9-10_第6张图片

 CS162 9-10_第7张图片

CS162 9-10_第8张图片 

CS162 9-10_第9张图片 

CS162 9-10_第10张图片 

CS162 9-10_第11张图片 

 调度

1.最小化响应时间

2.最大化吞吐量

3.分配时间公平

CS162 9-10_第12张图片

 FCFS

后面的短请求,要等待前面的长请求。 

CS162 9-10_第13张图片Round Robin Scheduling

Each process gets a small unit of CPU time (time quantum), usually 10-100 milliseconds – After quantum expires, the process is preempted and added to the end of the ready queue. – n processes in ready queue and time quantum is q  » Each process gets 1/n of the CPU time » In chunks of at most q time units » No process waits more than (n-1)q time units

CS162 9-10_第14张图片

CS162 9-10_第15张图片 

调度公平

如果job6得到锁,job1开始,就会发生优先级反转,解决方法是如果job1放弃调度的话,放回job6(持有锁的那个)

CS162 9-10_第16张图片

 

CS162 9-10_第17张图片 

 

CS162 9-10_第18张图片

 

CS162 9-10_第19张图片

 

你可能感兴趣的:(cs162,系统架构)