summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/graph.h
diff options
context:
space:
mode:
authorTim Mayberry <mojofunk@gmail.com>2013-08-14 20:30:09 +1000
committerTim Mayberry <mojofunk@gmail.com>2013-10-04 18:51:47 +1000
commitdf363a4fb3057253c1530941176cac49a7ffd409 (patch)
tree76a2423b920a8c476b5df1da44b964afcb4dc0c2 /libs/ardour/ardour/graph.h
parent82f0f3a9a76097402afae8be1c9a65d526ad8cf2 (diff)
Add AudioBackendThread class to support different thread type on windows
Diffstat (limited to 'libs/ardour/ardour/graph.h')
-rw-r--r--libs/ardour/ardour/graph.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/libs/ardour/ardour/graph.h b/libs/ardour/ardour/graph.h
index 08af6fb721..ed9e22de31 100644
--- a/libs/ardour/ardour/graph.h
+++ b/libs/ardour/ardour/graph.h
@@ -31,8 +31,6 @@
#include <glib.h>
#include <cassert>
-#include <pthread.h>
-
#include "pbd/semutils.h"
#include "ardour/types.h"
@@ -49,6 +47,8 @@ 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;
@@ -93,7 +93,7 @@ protected:
virtual void session_going_away ();
private:
- std::list<AudioBackendNativeThread> _thread_list;
+ std::list<AudioBackendThread*> _thread_list;
volatile bool _quit_threads;
void reset_thread_list ();