From 34b352cc5b2c483dfb93842928367010d8ebe35c Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Wed, 24 May 2000 22:07:40 +0000 Subject: [PATCH] updated to match thread class changes --- src/libCom/timer/osiTimer.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/libCom/timer/osiTimer.cpp b/src/libCom/timer/osiTimer.cpp index 32cb27b18..62e78e471 100644 --- a/src/libCom/timer/osiTimer.cpp +++ b/src/libCom/timer/osiTimer.cpp @@ -438,9 +438,10 @@ osiTimerQueue::~osiTimerQueue() // osiTimerThread::osiTimerThread () // osiTimerThread::osiTimerThread (osiTimerQueue &queueIn, unsigned priority) : - osiThread (), queue (queueIn) + osiThread ("osiTimerQueue", threadGetStackSize (threadStackMedium), priority), + queue (queueIn) { - start("osiTimerQueue", threadGetStackSize (threadStackMedium), priority); + this->start (); } //