summaryrefslogtreecommitdiff
path: root/rotord/src/rendercontext.h
diff options
context:
space:
mode:
authorComment <tim@gray.(none)>2013-09-30 12:31:37 +0100
committerComment <tim@gray.(none)>2013-09-30 12:31:37 +0100
commit9b6845576baddaf23afc80c61502dafd391b30b8 (patch)
treea2db5961edd91e5eca71f9d4d201d3d0b3fc4262 /rotord/src/rendercontext.h
parent38edd2e78c326059209c1fd15bf1b543f5fd7a46 (diff)
waveform auto iterate on print
Diffstat (limited to 'rotord/src/rendercontext.h')
-rw-r--r--rotord/src/rendercontext.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/rotord/src/rendercontext.h b/rotord/src/rendercontext.h
index 0cecf49..b0f8649 100644
--- a/rotord/src/rendercontext.h
+++ b/rotord/src/rendercontext.h
@@ -82,17 +82,17 @@ namespace Rotor {
} //interrupt locking process
Render_status get_render_status(const string &uid){
- graph.mutex.lock();
+ //graph.mutex.lock();
//cerr<<"render status requested: "<<uid<<" status: "<<renders[uid].status<<endl;
if (renders.find(uid)!=renders.end()){
if (renders[uid].status==RENDERING){
renders[uid].progress=graph.progress;
}
- graph.mutex.unlock();
+ //graph.mutex.unlock();
return renders[uid];
}
- graph.mutex.unlock();
+ //graph.mutex.unlock();
return Render_status(NOT_FOUND);
};