为了对缓冲池中的队列进行操作而设置了互斥信号量 MS[type]和资源信号量RS[type],相应地,两个操作过程Getbuf及Putbuf 的描述如下: procedure Getbuf(type) begin (A); (B); B(n):=Takebuf(type); (C); |end procedure Putbuf(type,n) begin (B); Addbuf(type,n); (C); (D); end A, B,C,D:(1)wait(MS[type]);(2)signal(MS[type]):(3)wait(RS[type]); (4)signal(RS[type])。
答:wai(RS[type]);wait(MS[type]);signal(MS[type]);signal(RS[type]);【解析】第六章 难易度:中
继续答题:下一题