always epicsThreadStackBig

On RTEMS at least, c++ code needs the largest
standard stack frame size.
This commit is contained in:
Michael Davidsaver
2019-07-08 09:06:45 -07:00
parent 31802a8bde
commit 3ef60a61a2
3 changed files with 3 additions and 3 deletions

View File

@@ -52,7 +52,7 @@ void Thread::Config::x_setdefault()
this->p_prio = epicsThreadPriorityLow;
this->p_autostart = true;
this->p_runner = NULL;
(*this).stack(epicsThreadStackSmall);
(*this).stack(epicsThreadStackBig);
}
size_t Thread::num_instances;