changed the name of the CAC process thread to not include blanks

This commit is contained in:
Jeff Hill
2000-05-25 16:52:46 +00:00
parent 5d18f555fa
commit 009ebefec4

View File

@@ -18,9 +18,9 @@
#include <iocinf.h>
processThread::processThread (cac *pcacIn) :
osiThread ("CAC process", threadGetStackSize(threadStackSmall), threadPriorityMedium),
pcac (pcacIn),
shutDown (false)
osiThread ( "CACprocess", threadGetStackSize (threadStackSmall), threadPriorityMedium ),
pcac ( pcacIn ),
shutDown ( false )
{
this->start ();
}