Skip to content

Commit ed13880

Browse files
stephanosiofabiobaltieri
authored andcommitted
linker: Remove k_mem_pool section
This commit removes the `k_mem_pool` section for the memory pool API, which was removed in the v2.5.0 release. Signed-off-by: Stephanos Ioannidis <[email protected]>
1 parent 316950e commit ed13880

File tree

3 files changed

+0
-4
lines changed

3 files changed

+0
-4
lines changed

cmake/linker_script/common/common-ram.cmake

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ endif()
4848

4949
zephyr_iterable_section(NAME k_timer GROUP DATA_REGION ${XIP_ALIGN_WITH_INPUT} SUBALIGN 4)
5050
zephyr_iterable_section(NAME k_mem_slab GROUP DATA_REGION ${XIP_ALIGN_WITH_INPUT} SUBALIGN 4)
51-
zephyr_iterable_section(NAME k_mem_pool GROUP DATA_REGION ${XIP_ALIGN_WITH_INPUT} SUBALIGN 4)
5251
zephyr_iterable_section(NAME k_heap GROUP DATA_REGION ${XIP_ALIGN_WITH_INPUT} SUBALIGN 4)
5352
zephyr_iterable_section(NAME k_mutex GROUP DATA_REGION ${XIP_ALIGN_WITH_INPUT} SUBALIGN 4)
5453
zephyr_iterable_section(NAME k_stack GROUP DATA_REGION ${XIP_ALIGN_WITH_INPUT} SUBALIGN 4)

include/zephyr/linker/common-ram.ld

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,6 @@
8888

8989
ITERABLE_SECTION_RAM_GC_ALLOWED(k_timer, 4)
9090
ITERABLE_SECTION_RAM_GC_ALLOWED(k_mem_slab, 4)
91-
ITERABLE_SECTION_RAM_GC_ALLOWED(k_mem_pool, 4)
9291
ITERABLE_SECTION_RAM_GC_ALLOWED(k_heap, 4)
9392
ITERABLE_SECTION_RAM_GC_ALLOWED(k_mutex, 4)
9493
ITERABLE_SECTION_RAM_GC_ALLOWED(k_stack, 4)

soc/xtensa/esp32_net/linker.ld

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,6 @@ SECTIONS
9696
. = ALIGN(4);
9797
Z_LINK_ITERABLE_GC_ALLOWED(k_mem_slab);
9898
. = ALIGN(4);
99-
Z_LINK_ITERABLE_GC_ALLOWED(k_mem_pool);
100-
. = ALIGN(4);
10199
Z_LINK_ITERABLE_GC_ALLOWED(k_heap);
102100
. = ALIGN(4);
103101
Z_LINK_ITERABLE_GC_ALLOWED(k_mutex);

0 commit comments

Comments
 (0)