-7

Possible Duplicate:
What does 'synchronized' mean?

What is the purpose of Java synchronization, and how should I use it?

Community
  • 1
  • 1
gane
  • 7
  • 1

2 Answers2

13

Java Tutorial: Synchronization. A generic answer to your generic question. Don't like it? Please elaborate a little. Cheers.

Adeel Ansari
  • 39,541
  • 12
  • 93
  • 133
1

If you mean how to implement synchronization (as in Java), it is language dependent. Generally it can implemented using the OS level locks (as in semaphores, mutex etc)