subsys/logging: change default stack size on x86 in long mode

The default stack size of 768 is just too small.

Signed-off-by: Charles E. Youse <charles.youse@intel.com>
This commit is contained in:
Charles E. Youse 2019-09-18 13:50:48 -04:00 committed by Andrew Boie
commit e6a874d515

View file

@ -165,6 +165,7 @@ config LOG_PROCESS_THREAD_STACK_SIZE
default 2048 if COVERAGE_GCOV
default 1024 if NO_OPTIMIZATIONS
default 1024 if XTENSA
default 4096 if (X86 && X86_LONGMODE)
default 768
help
Set the internal stack size for log processing thread.