mempool_heap.h 663 B

12345678910111213141516171819202122232425262728293031
  1. /*
  2. * Copyright (c) 2020 Intel Corporation
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_MEMPOOL_HEAP_H_
  7. #define ZEPHYR_INCLUDE_MEMPOOL_HEAP_H_
  8. /* Compatibility implementation of a k_mem_pool backend in terms of a
  9. * k_heap
  10. */
  11. /* The "ID" of a k_heap-based mempool is just the tuple of the data
  12. * block pointer and the heap that allocated it
  13. */
  14. struct k_mem_block_id {
  15. void *data;
  16. struct k_heap *heap;
  17. };
  18. /* Note the data pointer gets unioned with the same value stored in
  19. * the ID field to save space.
  20. */
  21. struct k_mem_block {
  22. union {
  23. void *data;
  24. struct k_mem_block_id id;
  25. };
  26. };
  27. #endif /* ZEPHYR_INCLUDE_MEMPOOL_HEAP_H_ */