Hi can anyone explain about the synchronization objects
types and where we are using in the code.



Hi can anyone explain about the synchronization objects types and where we are using in the code...

Answer / nishant

CRITICAL_SECTION :- CRITICAL_SECTION (CS) objects are initialized and deleted but do not have handles and are not shared by other processes. A variable should be declared to be of type CRITICAL_SECTION. Threads enter and leave a CS, and only one thread at a time can be in a specific CS. EnterCriticalSection blocks a thread if another thread is in the section. The waiting thread unblocks when another thread executes LeaveCriticalSection. If a thread already owns the CS, it can enter again without blocking; that is, CRITICAL_SECTIONs are recursive. CRITICAL_SECTIONs have the advantage of not being kernel objects and are maintained in user space. This usually, but not always, provides performance improvements.

Mutex: - mutexes can be named and have handles, they can also be used for interprocess synchronization between threads in separate processes. Mutex objects are similar to CSs, but, in addition to being process-sharable, mutexes allow time-out values and become signaled when abandoned by a terminating process.A thread gains mutex ownership (or locks the mutex) by waiting on the mutex handle (WaitForSingleObject or WaitForMultipleObjects), and it releases ownership with ReleaseMutex.

Semaphore :- Semaphores maintain a count, and the semaphore object is signaled when the count is greater than 0. The semaphore object is unsignaled when the count is 0.

Event :- Events are used to signal other threads that some event, such as a message being available, has occurred.

Is This Answer Correct ?    3 Yes 0 No

Post New Answer

More MFC Interview Questions

what is the use of AFX_MANAGE_STATE ?

4 Answers   HCL,


what is message Testing ?

1 Answers   L&T,


Why not virtual functions to handle messages?

5 Answers  


1) How do you Destroy a Dialog Box ?

2 Answers   Honeywell,


plzz tell me what we can do and dont in tally ERP & sap business one?

0 Answers  






Which CPrintInfo member variable must be set for multiple page printouts?

1 Answers  


What function is called by a document class to notify views that the document has been changed?

2 Answers  


Which Macro is a Super set of other two macro DECLARE_SERIAL,DECLARE_DYNAMIC and DECLARE_DYNCREATE. ?

2 Answers   Sony,


How to handle dynamic menus in mfc? What happens when client calls cocreateinstance?

0 Answers  


Tell me about different kinds of synchranization objects ?

6 Answers  


how many types of classes are ther,what are that

7 Answers   L&T,


List out the parameters of WinMain Function.

2 Answers   Mphasis,


Categories