From 009ebefec45fa0a4acdb554eb7d3cfe4cf1d891b Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Thu, 25 May 2000 16:52:46 +0000 Subject: [PATCH] changed the name of the CAC process thread to not include blanks --- src/ca/processThread.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ca/processThread.cpp b/src/ca/processThread.cpp index bc3f298ec..0c2c7798e 100644 --- a/src/ca/processThread.cpp +++ b/src/ca/processThread.cpp @@ -18,9 +18,9 @@ #include 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 (); }