:orphan: .. title:: CONFIG_IPM_CONSOLE_STACK_SIZE .. kconfig:: CONFIG_IPM_CONSOLE_STACK_SIZE CONFIG_IPM_CONSOLE_STACK_SIZE ############################# *Stack size for IPM console receiver thread* Type: ``int`` Help ==== .. code-block:: none Each instance of the IPM console receiver driver creates a worker thread to print out incoming messages from the remote CPU. Specify the stack size for these threads here. Defaults ======== - 2048 if \ :kconfig:`IPM_CONSOLE_RECEIVER ` - 2048 if \ :kconfig:`IPM_CONSOLE_RECEIVER ` - 2048 if \ :kconfig:`64BIT ` - 2048 - 4096 if \ :kconfig:`COVERAGE ` - 1024 - 2048 if \ :kconfig:`COVERAGE ` - 512 Kconfig definitions =================== At ``/xtensa/qemu_xtensa/Kconfig.defconfig:12`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:22`` Menu path: (Top) .. code-block:: kconfig config IPM_CONSOLE_STACK_SIZE int default 2048 if IPM_CONSOLE_RECEIVER depends on BOARD_QEMU_XTENSA ---- At ``/xtensa/xt-sim/Kconfig.defconfig:7`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:22`` Menu path: (Top) .. code-block:: kconfig config IPM_CONSOLE_STACK_SIZE int default 2048 if IPM_CONSOLE_RECEIVER ---- At ``/arc/Kconfig:376`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:39`` → ``/Kconfig:12`` Menu path: (Top) .. code-block:: kconfig config IPM_CONSOLE_STACK_SIZE int default 2048 if 64BIT ---- At ``/arm64/core/Kconfig:78`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:39`` → ``/Kconfig:12`` → ``/arm64/Kconfig:32`` Menu path: (Top) → ARM64 Options .. code-block:: kconfig config IPM_CONSOLE_STACK_SIZE int default 2048 depends on ARM64 ---- At ``/sparc/Kconfig:51`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:39`` → ``/Kconfig:12`` Menu path: (Top) → SPARC Options .. code-block:: kconfig config IPM_CONSOLE_STACK_SIZE int default 4096 if COVERAGE default 1024 depends on SPARC ---- At ``/console/Kconfig:167`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:42`` → ``/Kconfig:14`` Menu path: (Top) → Device Drivers → Console drivers → Inter-processor Mailbox console receiver .. code-block:: kconfig config IPM_CONSOLE_STACK_SIZE int "Stack size for IPM console receiver thread" default 2048 if COVERAGE default 512 depends on IPM_CONSOLE_RECEIVER && CONSOLE help Each instance of the IPM console receiver driver creates a worker thread to print out incoming messages from the remote CPU. Specify the stack size for these threads here. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*