hv_vos_Mutex.h 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. /*
  2. * @file hv_vos_Mutex.h
  3. * @brief Header file of I2C driver.
  4. *
  5. * @verbatim
  6. * ==============================================================================
  7. * ##### How to use #####
  8. * ==============================================================================
  9. * (+) Use ()
  10. *
  11. * @endverbatim
  12. * @author HiView SoC Software Team
  13. * @version 1.0.0
  14. * @date 2023-03-01
  15. */
  16. #ifndef _HV_VOS_MUTEX_H
  17. #define _HV_VOS_MUTEX_H
  18. #include "hv_vos_Types.h"
  19. VOS_EXTERN_C_BEGIN
  20. /** @defgroup VOS_MUTEX VOS_MUTEX
  21. * VOS mutex functions
  22. * @{
  23. */
  24. /** @brief mutex forward declaration */
  25. typedef struct _HV_VOS_MUTEX_S HV_VOS_MUTEX_S;
  26. /** @brief Create mutex
  27. *
  28. * @return mutex pointer, return NULL if create fail
  29. */
  30. HV_VOS_MUTEX_S *Hv_Vos_MutexInit();
  31. /** @brief Destroy mutex
  32. *
  33. * @param self mutex pointer
  34. * @return result
  35. */
  36. void Hv_Vos_MutexCleanup(HV_VOS_MUTEX_S *self);
  37. /** @brief Lock mutex
  38. *
  39. * @param self mutex pointer
  40. */
  41. void Hv_Vos_MutexLock(HV_VOS_MUTEX_S *self);
  42. /** @brief Unlock mutex
  43. *
  44. * @param self mutex pointer
  45. */
  46. void Hv_Vos_MutexUnlock(HV_VOS_MUTEX_S *self);
  47. /** @brief try lock mutex for a period
  48. *
  49. * @param self mutex pointer
  50. * @param timeoutMs lock waiting timeout milliseconds
  51. * @return return HV_TRUE for success, HV_FALSE for timeout
  52. */
  53. BOOL Hv_Vos_MutexTimedLock(HV_VOS_MUTEX_S *self, UINT32 timeoutMs);
  54. /** @} */ //end of group VOS_MUTEX
  55. VOS_EXTERN_C_END
  56. #endif