productor-consumidor tomado de Wikipedia:productor-consumidor con sempahores
semaphore mutex = 1
semaphore fillCount = 0
semaphore emptyCount = BUFFER_SIZE
procedure producer() {
while (true) {
item = produceItem()
down(emptyCount)
down(mutex)
putItemIntoBuffer(item)
up(mutex)
up(fillCount)
}
up(fillCount) //the consumer may not finish before the producer.
}
procedure consumer() {
while (true) {
down(fillCount)
down(mutex)
item = removeItemFromBuffer()
up(mutex)
up(emptyCount)
consumeItem(item)
}
}
Mi pregunta - ¿por qué el productor tiene up(fillCount) //the consumer may not finish before the producer
después del bucle while. ¿Cuándo llegará el programa y por qué es necesario?