remote: Request larger stack for workers

Overflows observed on RTEMS/ppc (mvme6100).
This commit is contained in:
Michael Davidsaver
2018-06-04 10:02:40 -07:00
parent 794d72ba6b
commit c8292caf91

View File

@@ -1206,10 +1206,12 @@ BlockingTCPTransportCodec::BlockingTCPTransportCodec(bool serverFlag, const Cont
,_readThread(epics::pvData::Thread::Config(this, &BlockingTCPTransportCodec::receiveThread)
.prio(epicsThreadPriorityCAServerLow)
.name("TCP-rx")
.stack(epicsThreadStackBig)
.autostart(false))
,_sendThread(epics::pvData::Thread::Config(this, &BlockingTCPTransportCodec::sendThread)
.prio(epicsThreadPriorityCAServerLow)
.name("TCP-tx")
.stack(epicsThreadStackBig)
.autostart(false))
,_channel(channel)
,_context(context), _responseHandler(responseHandler)