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 (); } //