summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/graph.h
diff options
context:
space:
mode:
authorTim Mayberry <mojofunk@gmail.com>2013-10-02 19:40:48 +1000
committerTim Mayberry <mojofunk@gmail.com>2013-10-04 18:53:37 +1000
commit53ad2d187ffb31edcb90f7db5799886ee1806586 (patch)
tree8974083bf0b95e5d4dfff9fe5e53d09641d685a3 /libs/ardour/ardour/graph.h
parentdf363a4fb3057253c1530941176cac49a7ffd409 (diff)
Move processing thread list from ARDOUR::Graph into AudioBackend implementation
Diffstat (limited to 'libs/ardour/ardour/graph.h')
-rw-r--r--libs/ardour/ardour/graph.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/libs/ardour/ardour/graph.h b/libs/ardour/ardour/graph.h
index ed9e22de31..763723c792 100644
--- a/libs/ardour/ardour/graph.h
+++ b/libs/ardour/ardour/graph.h
@@ -47,8 +47,6 @@ class Route;
class Session;
class GraphEdges;
-class AudioBackendThread;
-
typedef boost::shared_ptr<GraphNode> node_ptr_t;
typedef std::list< node_ptr_t > node_list_t;
@@ -59,8 +57,6 @@ class Graph : public SessionHandleRef
public:
Graph (Session & session);
- uint32_t threads_in_use () const { return _thread_list.size(); }
-
void prep();
void trigger (GraphNode * n);
void rechain (boost::shared_ptr<RouteList>, GraphEdges const &);
@@ -93,7 +89,6 @@ protected:
virtual void session_going_away ();
private:
- std::list<AudioBackendThread*> _thread_list;
volatile bool _quit_threads;
void reset_thread_list ();