summaryrefslogtreecommitdiff
path: root/libs/ardour/graph.cc
diff options
context:
space:
mode:
authorTorben Hohn <torbenh@gmx.de>2011-02-22 02:06:46 +0000
committerTorben Hohn <torbenh@gmx.de>2011-02-22 02:06:46 +0000
commit733304487037d6228c96030b7a1dca01334e349c (patch)
tree3363f04a9b51b00907e70c12c5dbf0edea9e2dbe /libs/ardour/graph.cc
parentf9bf2aa8ec5fed9bcdbd63d84f433dcb48abab26 (diff)
reset _execution_tokens to 0 in Graph::drop_threads()
this was causing false thread wakeups. git-svn-id: svn://localhost/ardour2/branches/3.0@8921 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/graph.cc')
-rw-r--r--libs/ardour/graph.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/libs/ardour/graph.cc b/libs/ardour/graph.cc
index 2ac465f1e9..5c0d41ed17 100644
--- a/libs/ardour/graph.cc
+++ b/libs/ardour/graph.cc
@@ -160,6 +160,8 @@ Graph::drop_threads ()
_thread_list.clear ();
+ _execution_tokens = 0;
+
_quit_threads = false;
}