mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-26 21:36:26 +00:00
We introduce linker symbols to hold the start and end address of the memory area holding the thread privilege stack buffers, applicable when building with support for User Mode. Signed-off-by: Ioannis Glaropoulos <Ioannis.Glaropoulos@nordicsemi.no>
13 lines
313 B
Plaintext
13 lines
313 B
Plaintext
/*
|
|
* Copyright (c) 2017 Linaro Limited.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
SECTION_DATA_PROLOGUE(priv_stacks_noinit,,)
|
|
{
|
|
z_priv_stacks_ram_start = .;
|
|
*(".priv_stacks.noinit")
|
|
z_priv_stacks_ram_end = .;
|
|
} GROUP_DATA_LINK_IN(RAMABLE_REGION, ROMABLE_REGION)
|