第2章进程管理-3概要.ppt

  1. 1、本文档共77页,可阅读全部内容。
  2. 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
第2章进程管理-3概要

互斥与同步解决方法之三: 信号量方法;实例;整型信号量;记录型信号量的基本原理;记录型信号量的定义;相应地,wait(S)和signal(S)操作可描述为: procedure wait(S)      var S:semaphore;      begin       S.value:=S.value-1;       if S.value0 then block(S.L);      end procedure signal(S)      var S: semaphore;      begin       S.value:=S.value+1;       if S.value=0 then wakeup(S.L);      end ;wait和signal的应用;信号量类型;信号量类型的物理意义;S.value的取值范围;AND型信号量;AND型信号量;AND型信号量;Swait(S1,S2,…,Sn)   if Si=1 and … and Sn=1 then    for i:=1 to n do    Si:=Si-1;    endfor   else   place the process in the waiting queue associated with the first Si found with Si1,and set the program count of this process to the beginning of Swait operation   endif Ssignal(S1,S2,…,Sn) for i:=1 to n do   Si:=Si+1; Remove all the process waiting in the queue associated with Si into the ready queue. endfor; ;信号量集;Swait(S1,t1,d1,…,Sn,tn,dn)   if Si=t1 and … and Sn=dn then    for i:=1 to n do    Si:=Si-di;    endfor   else   place the process in the waiting queue associated with the first Si found with Siti,and set the program count of this process to the beginning of Swait operation   endif Ssignal(S1,d1,…,Sn,dn) for i:=1 to n do   Si:=Si+di; Remove all the process waiting in the queue associated with Si into the ready queue. endfor; ;信号量集几种特殊的情况;使用信号量解决问题的关键;利用信号量实现进程互斥;利用信号量实现进程的同步;利用信号量实现进程的同步(扩展1);利用信号量实现进程的同步(扩展2);利用信号量实现进程的同步(扩展3);利用信号量实现进程的同步(练习);思考;为了使三个进程并发工作以大大加快执行速度,又保证打印结果和输入结果一致,三个进程之间必须协调工作。 ★ 设四个信号量S1、S2、S3、S4,令: S1:初值为1,表示缓冲区Buffer1空闲的单元数; S2:初值为0,表示缓冲区Buffer1数据的个数; S3:初值为1,表示缓冲区Buffer2空闲的单元数; S4:初值为0,表示缓冲区Buffer2中数据个数。 ;;信号量的应用 -实现前趋关系;信号量的应用 -实现前趋关系;要点;Var a,b,c,d,e,f,g:semaphore: =0,0,0,0,0,0,0;   begin    parbegin     begin S1; signal(a); signal(b); end;     begin wait(a); S2; signal(c); signal(d); end;     begin wait(b); S3; signal(e); end;     begin wait(c); S4; signal(f); end;     begin wait(d); S5; signal(g); end;     begin wait(e); wait(f); wait(g); S6; end;    parend   end ;信号量的使用要点;2.4 经典进程的同步问题;生产者-消费者问题; 假设缓冲区的大小为n(

文档评论(0)

yaocen + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档