:orphan: .. title:: CONFIG_SYSTEM_WORKQUEUE_STACK_SIZE .. kconfig:: CONFIG_SYSTEM_WORKQUEUE_STACK_SIZE CONFIG_SYSTEM_WORKQUEUE_STACK_SIZE ################################## *System workqueue stack size* Type: ``int`` Defaults ======== - 4096 if \ :kconfig:`64BIT ` - 4096 - 8192 - 4096 if \ :kconfig:`COVERAGE ` - 1024 Kconfig definitions =================== At ``/arc/Kconfig:370`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:39`` → ``/Kconfig:12`` Menu path: (Top) .. code-block:: kconfig config SYSTEM_WORKQUEUE_STACK_SIZE int default 4096 if 64BIT ---- At ``/arm64/core/Kconfig:66`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:39`` → ``/Kconfig:12`` → ``/arm64/Kconfig:32`` Menu path: (Top) → ARM64 Options .. code-block:: kconfig config SYSTEM_WORKQUEUE_STACK_SIZE int default 4096 depends on ARM64 ---- At ``/x86/core/Kconfig.intel64:20`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:39`` → ``/Kconfig:12`` → ``/x86/Kconfig:483`` Menu path: (Top) → X86 Architecture Options .. code-block:: kconfig config SYSTEM_WORKQUEUE_STACK_SIZE int default 8192 depends on X86_64 && X86 ---- At ``/Kconfig:390`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:40`` Menu path: (Top) → General Kernel Options → Work Queue Options .. code-block:: kconfig config SYSTEM_WORKQUEUE_STACK_SIZE int "System workqueue stack size" default 4096 if COVERAGE default 1024 *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*