Producer	Consumer
  get  0;
  put  1;
for ( ; ; ) {	for ( ; ; ) {
sem_wait(&put);	sem_wait(&get);
   ;	   ;
sem_post(&get);	sem_post(&put);
}	}
