toolchain: drop the old Z_ prefixed iterables macro

Drop the original Z_ prefixed iterable section macros. These were marked
as deprecated in 171739d06e.

Signed-off-by: Fabio Baltieri <fabiobaltieri@google.com>
This commit is contained in:
Fabio Baltieri 2021-10-06 22:23:18 +01:00 committed by Carles Cufí
parent a850993352
commit 69f60eb2cf
2 changed files with 0 additions and 24 deletions

View file

@ -78,9 +78,6 @@
Z_LINK_ITERABLE(struct_type); \
} GROUP_ROM_LINK_IN(RAMABLE_REGION, ROMABLE_REGION)
#define Z_ITERABLE_SECTION_ROM(struct_type, subalign) \
ITERABLE_SECTION_ROM(struct_type, subalign)
/**
* @brief Define a garbage collectable read-only iterable section output.
*
@ -99,9 +96,6 @@
Z_LINK_ITERABLE_GC_ALLOWED(struct_type); \
} GROUP_LINK_IN(ROMABLE_REGION)
#define Z_ITERABLE_SECTION_ROM_GC_ALLOWED(struct_type, subalign) \
ITERABLE_SECTION_ROM_GC_ALLOWED(struct_type, subalign)
/**
* @brief Define a read-write iterable section output.
*
@ -122,9 +116,6 @@
Z_LINK_ITERABLE(struct_type); \
} GROUP_DATA_LINK_IN(RAMABLE_REGION, ROMABLE_REGION)
#define Z_ITERABLE_SECTION_RAM(struct_type, subalign) \
ITERABLE_SECTION_RAM(struct_type, subalign)
/**
* @brief Define a garbage collectable read-write iterable section output.
*
@ -143,9 +134,6 @@
Z_LINK_ITERABLE_GC_ALLOWED(struct_type); \
} GROUP_DATA_LINK_IN(RAMABLE_REGION, ROMABLE_REGION)
#define Z_ITERABLE_SECTION_RAM_GC_ALLOWED(struct_type, subalign) \
ITERABLE_SECTION_RAM_GC_ALLOWED(struct_type, subalign)
/**
* @}
*/ /* end of struct_section_apis */

View file

@ -211,10 +211,6 @@
Z_DECL_ALIGN(struct struct_type) name \
__in_section(_##struct_type, static, name) __used
#define Z_STRUCT_SECTION_ITERABLE(struct_type, name) \
__DEPRECATED_MACRO \
STRUCT_SECTION_ITERABLE(struct_type, name)
/**
* @brief Defines an alternate data type iterable section.
*
@ -227,10 +223,6 @@
Z_DECL_ALIGN(struct struct_type) name \
__in_section(_##out_type, static, name) __used
#define Z_STRUCT_SECTION_ITERABLE_ALTERNATE(out_type, struct_type, name) \
__DEPRECATED_MACRO \
STRUCT_SECTION_ITERABLE_ALTERNATE(out_type, struct_type, name)
/**
* @brief Iterate over a specified iterable section.
*
@ -251,10 +243,6 @@
iterator < _CONCAT(_##struct_type, _list_end); }); \
iterator++)
#define Z_STRUCT_SECTION_FOREACH(struct_type, iterator) \
__DEPRECATED_MACRO \
STRUCT_SECTION_FOREACH(struct_type, iterator)
/**
* @}
*/ /* end of struct_section_apis */