From 2c47e57940d13cc9c312b6f08b986c5b340a2d9c Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Thu, 25 May 2000 14:43:47 +0000 Subject: [PATCH] move arguments back to the constructtor --- src/ca/processThread.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ca/processThread.cpp b/src/ca/processThread.cpp index 3be2f08b2..2721c5d6f 100644 --- a/src/ca/processThread.cpp +++ b/src/ca/processThread.cpp @@ -18,11 +18,11 @@ #include processThread::processThread (cac *pcacIn) : - osiThread (), + osiThread ("CAC process", 0x1000, threadPriorityMedium), pcac (pcacIn), shutDown (false) { - start("CAC process", 0x1000, threadPriorityMedium); + this->start (); } processThread::~processThread ()