:orphan: .. title:: CONFIG_LOG_PROCESS_THREAD_STACK_SIZE .. kconfig:: CONFIG_LOG_PROCESS_THREAD_STACK_SIZE CONFIG_LOG_PROCESS_THREAD_STACK_SIZE #################################### *Stack size for the internal log processing thread* Type: ``int`` Help ==== .. code-block:: none Set the internal stack size for log processing thread. Direct dependencies =================== (\ :kconfig:`LOG_PROCESS_THREAD ` && \ :kconfig:`LOG ` && \ :kconfig:`BOARD_QEMU_CORTEX_A9 `) || (\ :kconfig:`LOG_PROCESS_THREAD ` && !\ :kconfig:`LOG_MODE_IMMEDIATE ` && !\ :kconfig:`LOG_MODE_MINIMAL ` && !\ :kconfig:`LOG_FRONTEND ` && !\ :kconfig:`LOG_MODE_MINIMAL ` && \ :kconfig:`LOG `) *(Includes any dependencies from ifs and menus.)* Defaults ======== - 8192 - 4096 if \ :kconfig:`X86 ` && \ :kconfig:`X86_64 ` - 4096 if \ :kconfig:`ARM64 ` - 4096 if \ :kconfig:`ARC ` && \ :kconfig:`64BIT ` - 4096 if \ :kconfig:`SPARC ` - 2048 if \ :kconfig:`COVERAGE_GCOV ` - 2048 if \ :kconfig:`RISCV ` && \ :kconfig:`64BIT ` - 2048 if \ :kconfig:`LOG_BACKEND_FS ` - 1152 if \ :kconfig:`LOG_BACKEND_NET ` - 4096 if \ :kconfig:`NO_OPTIMIZATIONS ` - 1024 if \ :kconfig:`XTENSA ` - 768 Kconfig definitions =================== At ``/arm/qemu_cortex_a9/Kconfig.defconfig:34`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:22`` Menu path: (Top) .. code-block:: kconfig config LOG_PROCESS_THREAD_STACK_SIZE int default 8192 depends on LOG_PROCESS_THREAD && LOG && BOARD_QEMU_CORTEX_A9 ---- At ``/logging/Kconfig.processing:84`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:44`` → ``/Kconfig:31`` → ``/logging/Kconfig:21`` Menu path: (Top) → Sub Systems and OS Services → Logging → Processing → Use internal thread for log processing .. code-block:: kconfig config LOG_PROCESS_THREAD_STACK_SIZE int "Stack size for the internal log processing thread" default 4096 if X86 && X86_64 default 4096 if ARM64 default 4096 if ARC && 64BIT default 4096 if SPARC default 2048 if COVERAGE_GCOV default 2048 if RISCV && 64BIT default 2048 if LOG_BACKEND_FS default 1152 if LOG_BACKEND_NET default 4096 if NO_OPTIMIZATIONS default 1024 if XTENSA default 768 depends on LOG_PROCESS_THREAD && !LOG_MODE_IMMEDIATE && !LOG_MODE_MINIMAL && !LOG_FRONTEND && !LOG_MODE_MINIMAL && LOG help Set the internal stack size for log processing thread. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*