![]() |
DCE for the HP e3000
> Chapter 5 Programming with Kernel ThreadsThreads Synchronization and Communication |
|||||||||||||||
|
Mutexes (Mutual Exclusion Objects)Mutexes are used to synchronize access by multiple threads to a shared resource, allowing access by only one thread at a time. Routines for creating and managing mutexes are:
Condition VariablesCondition variables provide an explicit communication vehicle between threads. A condition variable is a shared resource, and requires a mutex to protect it. A condition variable is used to block one or more threads until a condition becomes true, then any or all of the blocked threads can be unblocked. Routines for creating and managing condition variables are:
Join FacilityThe join facility is the simplest means of synchronizing threads, and uses neither shared resources or mutexes. The join facility causes the calling thread to wait until the specified thread finishes and returns a status value to the calling thread. Routines for joining and detaching threads are:
|