Sep 2 21:48 2003 encode

86Buffer buf;// this is the global shared buffer object. 87. 88void *producer_thread(void *) 89{90Producer p(buf);// instantiate one object of class Producer. 91p.run();// be a producer. 92} 93. 94void *consumer_thread(void *) 95{96Consumer c(buf);// instantiate one object of class Consumer. 97c.run();// be a consumer. 98} 99. 100// main thread ... ................
................