Thread murderalization enhancement

This commit is contained in:
Mark Watkins 2011-09-01 12:06:38 +10:00
parent 7169f20c50
commit f0cf7a84a9
2 changed files with 14 additions and 9 deletions

View File

@ -298,8 +298,9 @@ gThread::gThread(gGraph *g)
}
void gThread::run()
{
while (this->isRunning()) {
mutex.lock();
m_running=true;
while (m_running) {
if (mutex.tryLock(1000)) {
int originX=m_lastbounds.x();
int originY=m_lastbounds.y();
int width=m_lastbounds.width();
@ -307,6 +308,7 @@ void gThread::run()
graph->paint(originX,originY,width,height);
graph->threadDone();
}
}
}
void gThread::paint(int originX, int originY, int width, int height)
{
@ -343,6 +345,8 @@ gGraph::gGraph(gGraphView *graphview,QString title,int height,short group) :
gGraph::~gGraph()
{
if (m_graphview->useThreads()) {
m_thread->die();
m_thread->wait();
m_thread->exit();
}
delete m_thread;

View File

@ -163,11 +163,12 @@ public:
gThread(gGraph *g);
void run();
void paint(int originX, int originY, int width, int height);
void die() { m_running=false; }
QMutex mutex;
protected:
gGraph * graph;
QRect m_lastbounds;
volatile bool m_running;
};
class gGraph