Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am reading through the msdn articles about windows synchronization. It is really good & thorough material. At the same time is very time consuming. I am more interested in a quick comprehensive guide on the same topic. Any pointers?

share|improve this question
This is not a real question. Please ask something specific. – David Heffernan Jul 12 '11 at 9:04

2 Answers

up vote 1 down vote accepted

This is a list of the concepts that I use in my native (unmanaged, Win32) application. I've added some relevant function names between parenthesis):

  • CriticalSection (InitializeCriticalSection, TryEnterCriticalSection, LeaveCriticalSection, ...)
  • Mutex (CreateMutex, WaitForsingleObject, ReleaseMutex, CloseHandle, ...)
  • Semaphore (CreateSemaphore, WaitForSingleObject, ReleaseSemaphore, CloseHandle, ...)
  • Event (CreateEvent, SetEvent, ResetEvent, WaitForSingleObject, CloseHandle, ...)

Besides these you could also use a file to implement locking (e.g. between processes running on different machines):

  • Simply create the file using CreateFile, use FILE_FLAG_DELETE_ON_CLOSE, and don't specify any of the sharing flags.
  • If a process already created the file, the CreateFile will fail.
  • To unlock, close the file using CloseHandle.
share|improve this answer
You can also synchronize on a thread terminating (i.e. WaitForSingleObject with a handle to a thread). Another sync primitive you left out is slim reader/writer locks. – Paul Betts Jul 12 '11 at 6:47

This might be a good starting point:

Synchronization Functions: http://msdn.microsoft.com/en-us/library/ms686360%28v=VS.85%29.aspx

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.