| Author: Abhijeet Kumar 26 Jul 2008 | Member Level: Gold | Rating: Points: 5 |
Synchronization simply means writing your program in such a way that yr program is thread safe.
That is IF one thread is using any critical resource then other thread should not be able to interfere with it.
So that your program behaves as intended. This is achieved with using thread locking concepts.
You can search for Thread Synchronization in Google and find lot of articles on this.
But remember to practice practically, that is the only way of learning any new thing.
|