:orphan: .. title:: X86_EXCEPTION_STACK_SIZE .. option:: CONFIG_X86_EXCEPTION_STACK_SIZE *Size of the exception stack(s)* Type: ``int`` 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. Direct dependencies =================== \ :option:`X86_64 ` && \ :option:`X86 ` *(Includes any dependencies from ifs and menus.)* Default ======= - 4096 Kconfig definition ================== .. highlight:: kconfig At ``arch/x86/core/Kconfig.intel64:23`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:29`` → ``arch/Kconfig:12`` → ``arch/x86/Kconfig:320`` Menu path: (Top) → X86 Architecture Options .. parsed-literal:: config X86_EXCEPTION_STACK_SIZE int "Size of the exception stack(s)" default 4096 depends on \ :option:`X86_64 ` && \ :option:`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.)*