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

@@ -48,7 +48,7 @@ void PutDoneThread::start()
thread = std::tr1::shared_ptr<epicsThread>(new epicsThread(
*this,
"putDoneThread",
epicsThreadGetStackSize(epicsThreadStackSmall),
epicsThreadGetStackSize(epicsThreadStackBig),
epicsThreadPriorityLow));
thread->start();
}