hv_vos_Pool.h 879 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /*
  2. * @file hv_vos_Pool.h
  3. * @brief Header file of pool.
  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_POOL_H
  17. #define _HV_VOS_POOL_H
  18. #include "hv_vos_Types.h"
  19. VOS_EXTERN_C_BEGIN
  20. /** @defgroup VOS_POOL VOS_POOL
  21. * VOS memory pool routines
  22. * @{
  23. */
  24. typedef struct _HV_VOS_POOL_S Hv_Vos_POOL_S;
  25. Hv_Vos_POOL_S *Hv_Vos_POOL_Init(UINT32 elementSize, UINT32 elementCount);
  26. void *Hv_Vos_POOL_Alloc(Hv_Vos_POOL_S *self);
  27. void Hv_Vos_POOL_Free(Hv_Vos_POOL_S *self, void *node);
  28. void Hv_Vos_POOL_Cleanup(Hv_Vos_POOL_S *self);
  29. /** @} */
  30. VOS_EXTERN_C_END
  31. #endif