#include <mutex.h>
Inheritance diagram for PTimedMutex:
Public Member Functions | |
PTimedMutex () | |
PTimedMutex (const PTimedMutex &mutex) | |
PINLINE bool | Try () |
...
mutex.Wait();
... critical section - only one thread at a time here.
mutex.Signal();
... {verbatim} The first thread will pass through the Wait()# function, a second thread will block on that function until the first calls the Signal()# function, releasing the second thread.
PTimedMutex::PTimedMutex | ( | ) |
PTimedMutex::PTimedMutex | ( | const PTimedMutex & | mutex | ) |
PINLINE bool PTimedMutex::Try | ( | ) | [inline] |
Try to enter the critical section for exlusive access. Does not wait.