:orphan: .. title:: CONFIG_X86_EXCEPTION_STACK_SIZE .. kconfig:: CONFIG_X86_EXCEPTION_STACK_SIZE CONFIG_X86_EXCEPTION_STACK_SIZE ############################### *Size of the exception stack(s)* Type: ``int`` Help ==== .. code-block:: none The exception stack(s) (one per CPU) are used both for exception processing and early kernel/CPU initialization. They need only support limited call-tree depth and must fit into the low core, so they are typically smaller than the ISR stacks. Direct dependencies =================== \ :kconfig:`X86_64 ` && \ :kconfig:`X86 ` *(Includes any dependencies from ifs and menus.)* Default ======= - 4096 Kconfig definition ================== At ``/x86/core/Kconfig.intel64:23`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:39`` → ``/Kconfig:12`` → ``/x86/Kconfig:483`` Menu path: (Top) → X86 Architecture Options .. code-block:: kconfig config X86_EXCEPTION_STACK_SIZE int "Size of the exception stack(s)" default 4096 depends on X86_64 && X86 help The exception stack(s) (one per CPU) are used both for exception processing and early kernel/CPU initialization. They need only support limited call-tree depth and must fit into the low core, so they are typically smaller than the ISR stacks. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*