Re: Anybody help me to solve this,this is ver urgent
Posted By:
Simon_Ablett
Posted On:
Tuesday, March 4, 2003 08:11 AM
So create two threads have a shared memory pool. Write data into the memory pool from one thread and read from it in the other. Synchronize on the data pool, or a lock object, to prevent reads occurring whilst a write is taking place or vice versa. Easy.
Regarsd.