What is the difference between critical section, mutex and semaphore ? Explain synchronization methods in win32 / MFC. May 23, 2009 Share Get link Facebook X Pinterest Email Other Apps Share Get link Facebook X Pinterest Email Other Apps Comments Unknown said… 1. Critical section – used for synchronizing threads from same process2. Mutexes – used for synchronizing threads across different process.3. Semaphore – maintains resource counting against number of processes using them.4. Events - State signaling , set or reset state.
Comments
2. Mutexes – used for synchronizing threads across different process.
3. Semaphore – maintains resource counting against number of processes using them.
4. Events - State signaling , set or reset state.