123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- /*
- * @file hv_vos_Mutex.h
- * @brief Header file of I2C driver.
- *
- * @verbatim
- * ==============================================================================
- * ##### How to use #####
- * ==============================================================================
- * (+) Use ()
- *
- * @endverbatim
- * @author HiView SoC Software Team
- * @version 1.0.0
- * @date 2023-03-01
- */
- #ifndef _HV_VOS_MUTEX_H
- #define _HV_VOS_MUTEX_H
- #include "hv_vos_Types.h"
- VOS_EXTERN_C_BEGIN
- /** @defgroup VOS_MUTEX VOS_MUTEX
- * VOS mutex functions
- * @{
- */
- /** @brief mutex forward declaration */
- typedef struct _HV_VOS_MUTEX_S HV_VOS_MUTEX_S;
- /** @brief Create mutex
- *
- * @return mutex pointer, return NULL if create fail
- */
- HV_VOS_MUTEX_S *Hv_Vos_MutexInit();
- /** @brief Destroy mutex
- *
- * @param self mutex pointer
- * @return result
- */
- void Hv_Vos_MutexCleanup(HV_VOS_MUTEX_S *self);
- /** @brief Lock mutex
- *
- * @param self mutex pointer
- */
- void Hv_Vos_MutexLock(HV_VOS_MUTEX_S *self);
- /** @brief Unlock mutex
- *
- * @param self mutex pointer
- */
- void Hv_Vos_MutexUnlock(HV_VOS_MUTEX_S *self);
- /** @brief try lock mutex for a period
- *
- * @param self mutex pointer
- * @param timeoutMs lock waiting timeout milliseconds
- * @return return HV_TRUE for success, HV_FALSE for timeout
- */
- BOOL Hv_Vos_MutexTimedLock(HV_VOS_MUTEX_S *self, UINT32 timeoutMs);
- /** @} */ //end of group VOS_MUTEX
- VOS_EXTERN_C_END
- #endif
|