12345678910111213141516171819202122232425262728 |
- SECTION_PROLOGUE(_NOINIT_SECTION_NAME,(NOLOAD),)
- {
-
- *(.noinit)
- *(".noinit.*")
- #ifdef CONFIG_USERSPACE
- z_user_stacks_start = .;
- *(.user_stacks*)
- z_user_stacks_end = .;
- #endif
- #include <snippets-noinit.ld>
- } GROUP_NOLOAD_LINK_IN(RAMABLE_REGION, ROMABLE_REGION)
- #include "kobject-priv-stacks.ld"
|