Skip to content
Snippets Groups Projects
Commit bb3b26e0 authored by Matthias Grob's avatar Matthias Grob
Browse files

logger: adjusted log_writer_file stack size

 because of messages in the logs
parent ca9393eb
No related branches found
No related tags found
No related merge requests found
......@@ -119,7 +119,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(1050));
pthread_attr_setstacksize(&thr_attr, PX4_STACK_ADJUSTED(1060));
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