13.07.2015 Views

5. Predavanje - VTS NS

5. Predavanje - VTS NS

5. Predavanje - VTS NS

SHOW MORE
SHOW LESS

You also want an ePaper? Increase the reach of your titles

YUMPU automatically turns print PDFs into web optimized ePapers that Google loves.

MonitoriPrimer: ograničeni bafer (bounded buffer)monitor buffer;export append, take;varbuf : array[0..size-1] of integer;top, base : 0..size-1;numberInBuffer : integer;spaceAvailable, itemAvailable : condition;procedure append (i : integer);beginwhile numberInBuffer = size dowait(spaceAvailable);end while;buf[top] := i;numberInBuffer := numberInBuffer+1;top := (top+1) mod size;signal(itemAvailable);end append;10/285

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!