1 回答

TA貢獻(xiàn)1820條經(jīng)驗(yàn) 獲得超3個(gè)贊
Var mutex,empty,full:semaphore:=1,n,0; // 定義三個(gè)信號(hào)量
buffer:array[0,...,n-1]of item; // 定義緩沖池,容量為n
in,out:integer:=0,0;
begin
parbegin
proceducer:begin // 生產(chǎn)者
repeat
.
.
.
producer an item nextp; // 生產(chǎn)一個(gè)產(chǎn)品
.
.
.
wait(empty); // 申請(qǐng)一個(gè)空緩沖區(qū)
wait(mutex); // 申請(qǐng)緩沖池的使用權(quán)
buffer(in):=nextp; // 將產(chǎn)品放入緩沖池中
in:=(in+1)mod n; // 下一個(gè)空緩沖區(qū)地址
signal(mutex); //釋放緩沖池使用權(quán)
signal(full); // 釋放一個(gè)滿緩沖區(qū)
until false;
end
consumer:begin
repeat
wait(full);
wait(mutex);
nextc:=buffer(out);
out:=(out+1)mod n;
signal(mutex);
signal(empty);
consumer the item in nextc;
until false;
end
parend
end
nextp 應(yīng)該是next proceducer的意思吧
nextc 應(yīng)該是next consumer
貌似也不是什么變量,屬于語(yǔ)言描述而已
下面的消費(fèi)者也是差不多的。
至于生產(chǎn)者進(jìn)程如何被阻塞和喚醒,因?yàn)槌绦蛑杏幸粋€(gè) repeat語(yǔ)句,所以進(jìn)程不斷測(cè)試緩沖池是否有空緩沖區(qū),以及緩沖池是否有其他進(jìn)程使用。若兩個(gè)條件不滿足,則進(jìn)入阻塞隊(duì)列等待。若某一時(shí)刻兩個(gè)條件都能滿足,則能喚醒該進(jìn)程。
- 1 回答
- 0 關(guān)注
- 109 瀏覽
添加回答
舉報(bào)