Skip to content

Commit

Permalink
commander: temporarily increase worker thread stack substantially
Browse files Browse the repository at this point in the history
  • Loading branch information
dagar authored Apr 24, 2021
1 parent 5416679 commit 59b70a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/commander/worker_thread.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ void WorkerThread::startTask(Request request)
/* initialize low priority thread */
pthread_attr_t low_prio_attr;
pthread_attr_init(&low_prio_attr);
pthread_attr_setstacksize(&low_prio_attr, PX4_STACK_ADJUSTED(3804));
pthread_attr_setstacksize(&low_prio_attr, PX4_STACK_ADJUSTED(4804));

#ifndef __PX4_QURT
// This is not supported by QURT (yet).
Expand Down

0 comments on commit 59b70a8

Please sign in to comment.