12345678910111213141516171819202122232425262728293031 |
- #ifndef ZEPHYR_INCLUDE_MEMPOOL_HEAP_H_
- #define ZEPHYR_INCLUDE_MEMPOOL_HEAP_H_
- struct k_mem_block_id {
- void *data;
- struct k_heap *heap;
- };
- struct k_mem_block {
- union {
- void *data;
- struct k_mem_block_id id;
- };
- };
- #endif
|