Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Semaphores, Critical section, Mutex Examples in MFC & C#

can any one tell me or give me a link saying about detailed description of Critical section, Mutex,semaphores with some sample example of how to use them in MFC & C#

like image 505
Naruto Avatar asked Jan 25 '11 11:01

Naruto


1 Answers

I might explain but documentation on MSDN is already pretty excellent. Consider visiting Following Links.


Here is the link to Semaphores in C# with Example

-- http://msdn.microsoft.com/en-us/library/system.threading.semaphore.aspx

Mutex and Locks

-- http://msdn.microsoft.com/en-us/library/aa645740%28v=vs.71%29.aspx

CMutex synchronization in MFC

-- http://msdn.microsoft.com/en-us/library/ms386471%28v=vs.71%29.aspx

Critical Section MFC

-- http://msdn.microsoft.com/en-us/library/ms682530%28v=vs.85%29.aspx


Hope these help

like image 94
Shekhar_Pro Avatar answered Oct 27 '22 00:10

Shekhar_Pro