Difference between revisions of "Producer&Consumer MP-asincrono"
Jump to navigation
Jump to search
Line 1: | Line 1: | ||
<syntaxhighlight lang="C"> | <syntaxhighlight lang="C"> | ||
− | MP-asincrono | + | MP-sincrono dato quello asincrono |
Procuder(){ | Procuder(){ |
Revision as of 18:08, 21 March 2014
MP-sincrono dato quello asincrono
Procuder(){
produce(x);
asend(x,Consumer);
while(1){
areceive(Consumer);
produce(x);
asend(x,Consumer);
}
}
Consumer(){
while(1){
x = areceive(Producer);
consume(x);
asend(ACK,Producer);
}
}
MP-asincrono dato quello sincrono
#include <slideconcorrenzapg201.h>
Procuder(){
while(1){
produce(x);
asend(x,Consumer);
}
Consumer(){
while(1){
x=areceive(Producer);
consume(x);
}
}
Fede & Pirata