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:08:05 -07:00
parent 3a8a24deb3
commit e0dc94a91d
8 changed files with 9 additions and 9 deletions

View File

@@ -719,7 +719,7 @@ void TestIoc::start()
thread = std::auto_ptr<epicsThread>(new epicsThread(
*this,
"testIoc",
epicsThreadGetStackSize(epicsThreadStackSmall),
epicsThreadGetStackSize(epicsThreadStackBig),
epicsThreadPriorityLow));
thread->start();
#endif