:orphan: .. title:: CONFIG_X86_ENABLE_TSS .. kconfig:: CONFIG_X86_ENABLE_TSS CONFIG_X86_ENABLE_TSS ##################### *(No prompt -- not directly user assignable.)* Type: ``bool`` Help ==== .. code-block:: none This hidden option enables defining a Task State Segment (TSS) for kernel execution. This is needed to handle double-faults or do privilege elevation. It also defines a special TSS and handler for correctly handling double-fault exceptions, instead of just letting the system triple-fault and reset. Direct dependencies =================== !\ :kconfig:`X86_64 ` && \ :kconfig:`X86 ` *(Includes any dependencies from ifs and menus.)* Defaults ======== No defaults. Implicitly defaults to ``n``. Symbols that select this symbol =============================== - \ :kconfig:`X86_STACK_PROTECTION ` - \ :kconfig:`X86_USERSPACE ` Kconfig definition ================== At ``/x86/core/Kconfig.ia32:46`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:39`` → ``/Kconfig:12`` → ``/x86/Kconfig:482`` Menu path: (Top) → X86 Architecture Options → Processor Capabilities .. code-block:: kconfig config X86_ENABLE_TSS bool depends on !X86_64 && X86 help This hidden option enables defining a Task State Segment (TSS) for kernel execution. This is needed to handle double-faults or do privilege elevation. It also defines a special TSS and handler for correctly handling double-fault exceptions, instead of just letting the system triple-fault and reset. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*