Synchronization event operations. More...
Files | |
file | pcr.h |
Header file for the Portable C Runtime functions, defines and data types. | |
Typedefs | |
typedef struct PCREvent_t * | PCREvent |
Represents an allocated event. | |
Functions | |
DOF_PCR_DECLSPEC PCREvent | PCREvent_Create (boolean manualReset) |
Create a thread synchronization event. | |
DOF_PCR_DECLSPEC void | PCREvent_Signal (PCREvent evt) |
Signal an event. | |
DOF_PCR_DECLSPEC PCRStatus | PCREvent_Wait (PCREvent evt, uint32 time) |
Wait for an event to occur. | |
DOF_PCR_DECLSPEC void | PCREvent_Reset (PCREvent evt) |
Manually reset an event. | |
DOF_PCR_DECLSPEC void | PCREvent_Destroy (PCREvent evt) |
Destroy an event. | |
Synchronization event operations.