CONFIG_PRIVILEGED_STACK_SIZE¶
Size of privileged stack
Type: int
Help¶
This option sets the privileged stack region size that will be used
in addition to the user mode thread stack.  During normal execution,
this region will be inaccessible from user mode.  During system calls,
this region will be utilized by the system call. This value must be
a multiple of the minimum stack alignment.
Direct dependencies¶
(COVERAGE && BOARD_MPS2_AN385) || ARM64 || ARCH_HAS_USERSPACE
(Includes any dependencies from ifs and menus.)
Defaults¶
- 4096 
- 4096 
- 1024 
Kconfig definitions¶
At <Zephyr Boards>/arm/mps2_an385/Kconfig.defconfig:55
Included via Kconfig:8 → Kconfig.zephyr:22
Menu path: (Top)
config PRIVILEGED_STACK_SIZE
    int
    default 4096
    depends on COVERAGE && BOARD_MPS2_AN385
At <Zephyr Architecture>/arm64/core/Kconfig:88
Included via Kconfig:8 → Kconfig.zephyr:39 → <Zephyr Architecture>/Kconfig:12 → <Zephyr Architecture>/arm64/Kconfig:32
Menu path: (Top) → ARM64 Options
config PRIVILEGED_STACK_SIZE
    int
    default 4096
    depends on ARM64
At <Zephyr Architecture>/Kconfig:264
Included via Kconfig:8 → Kconfig.zephyr:39
Menu path: (Top) → General Architecture Options
config PRIVILEGED_STACK_SIZE
    int "Size of privileged stack"
    default 1024
    depends on ARCH_HAS_USERSPACE
    help
      This option sets the privileged stack region size that will be used
      in addition to the user mode thread stack.  During normal execution,
      this region will be inaccessible from user mode.  During system calls,
      this region will be utilized by the system call. This value must be
      a multiple of the minimum stack alignment.
(The ‘depends on’ condition includes propagated dependencies from ifs and menus.)