barrier/mt/CTimerThread.cpp

37 lines
787 B
C++
Raw Normal View History

2001-10-06 14:13:28 +00:00
#include "CTimerThread.h"
#include "CThread.h"
#include "TMethodJob.h"
#include "CLog.h"
2001-10-06 14:13:28 +00:00
#include <assert.h>
//
// CTimerThread
//
CTimerThread::CTimerThread(double timeout) : m_timeout(timeout)
{
assert(m_timeout > 0.0);
m_callingThread = new CThread(CThread::getCurrentThread());
m_timingThread = new CThread(new TMethodJob<CTimerThread>(
this, &CTimerThread::timer));
}
CTimerThread::~CTimerThread()
{
2001-10-14 19:16:54 +00:00
log((CLOG_DEBUG "cancelling timeout"));
2001-10-06 14:13:28 +00:00
m_timingThread->cancel();
2001-10-14 19:16:54 +00:00
m_timingThread->wait();
log((CLOG_DEBUG "cancelled timeout"));
2001-10-06 14:13:28 +00:00
delete m_timingThread;
delete m_callingThread;
}
void CTimerThread::timer(void*)
{
log((CLOG_DEBUG "timeout in %f seconds", m_timeout));
2001-10-06 14:13:28 +00:00
CThread::sleep(m_timeout);
log((CLOG_DEBUG "timeout"));
2001-10-06 14:13:28 +00:00
m_callingThread->cancel();
}