mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 18:50:44 +00:00
Thread murderalization enhancement
This commit is contained in:
parent
7169f20c50
commit
f0cf7a84a9
@ -298,14 +298,16 @@ gThread::gThread(gGraph *g)
|
||||
}
|
||||
void gThread::run()
|
||||
{
|
||||
while (this->isRunning()) {
|
||||
mutex.lock();
|
||||
int originX=m_lastbounds.x();
|
||||
int originY=m_lastbounds.y();
|
||||
int width=m_lastbounds.width();
|
||||
int height=m_lastbounds.height();
|
||||
graph->paint(originX,originY,width,height);
|
||||
graph->threadDone();
|
||||
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();
|
||||
int height=m_lastbounds.height();
|
||||
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;
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user