Go to the documentation of this file.
29 #ifndef SOPC_MUTEXES_H_
30 #define SOPC_MUTEXES_H_
SOPC_ReturnStatus SOPC_Condition_Clear(SOPC_Condition *cond)
Delete a Condition variable.
QueueHandle_t SOPC_Mutex
Definition: p_sopc_synchronisation.h:77
SOPC_ReturnStatus SOPC_Mutex_Unlock(SOPC_Mutex *mut)
Release a Mutex.
A platform independent API to use threads.
SOPC_ReturnStatus SOPC_Condition_Init(SOPC_Condition *cond)
Create a Condition variable.
SOPC_ReturnStatus SOPC_Mutex_UnlockAndWaitCond(SOPC_Condition *cond, SOPC_Mutex *mut)
Wait for a condition variable notification.
SOPC_ReturnStatus SOPC_Mutex_Lock(SOPC_Mutex *mut)
Lock a Mutex. The function may be blocking as long as the mutex is locked by another thread.
SOPC_ReturnStatus SOPC_Mutex_UnlockAndTimedWaitCond(SOPC_Condition *cond, SOPC_Mutex *mut, uint32_t milliSecs)
Timed wait for a condition variable notification.
SOPC_ReturnStatus SOPC_Condition_SignalAll(SOPC_Condition *cond)
Signals the condition variable to all waiting threads.
Definition: p_sopc_synchronisation.h:56
SOPC_ReturnStatus SOPC_Mutex_Initialization(SOPC_Mutex *mut)
Create a Mutex.
SOPC_ReturnStatus SOPC_Mutex_Clear(SOPC_Mutex *mut)
Delete a Mutex.
SOPC_ReturnStatus
Definition: libs2opc_client.h:64