add start method to osiThread

This commit is contained in:
Marty Kraimer
2000-05-19 15:40:15 +00:00
parent e4d9ceb26c
commit 8230a0622d
4 changed files with 19 additions and 10 deletions

View File

@@ -18,10 +18,11 @@
#include <iocinf.h>
processThread::processThread (cac *pcacIn) :
osiThread ("CAC process", 0x1000, threadPriorityMedium),
osiThread (),
pcac (pcacIn),
shutDown (false)
{
start("CAC process", 0x1000, threadPriorityMedium);
}
processThread::~processThread ()