Skip to content
Snippets Groups Projects
Commit 9551dcb4 authored by Daniel Agar's avatar Daniel Agar Committed by Lorenz Meier
Browse files

logger increase log_writer_file stack 1072 -> 1150

parent 81f0b64a
No related branches found
No related tags found
No related merge requests found
......@@ -176,7 +176,7 @@ int LogWriterFile::thread_start()
param.sched_priority = SCHED_PRIORITY_DEFAULT - 40;
(void)pthread_attr_setschedparam(&thr_attr, &param);
pthread_attr_setstacksize(&thr_attr, PX4_STACK_ADJUSTED(1072));
pthread_attr_setstacksize(&thr_attr, PX4_STACK_ADJUSTED(1150));
int ret = pthread_create(&_thread, &thr_attr, &LogWriterFile::run_helper, this);
pthread_attr_destroy(&thr_attr);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment