summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/graph.h
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2013-09-12 11:29:47 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2013-09-12 11:29:47 -0400
commit4df3666738607039445ebc9fa083bf5c23ac5539 (patch)
tree3388082f2e73c020edde31796fd977a71cb3abae /libs/ardour/ardour/graph.h
parent9f2ab81df6709d7b5d5701abbedc63d39e7330ab (diff)
add AudioBackendNativeThread to serve the same role as jack_native_thread_t
Diffstat (limited to 'libs/ardour/ardour/graph.h')
-rw-r--r--libs/ardour/ardour/graph.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/libs/ardour/ardour/graph.h b/libs/ardour/ardour/graph.h
index cac09d34af..08af6fb721 100644
--- a/libs/ardour/ardour/graph.h
+++ b/libs/ardour/ardour/graph.h
@@ -36,6 +36,7 @@
#include "pbd/semutils.h"
#include "ardour/types.h"
+#include "ardour/audio_backend.h"
#include "ardour/session_handle.h"
namespace ARDOUR
@@ -92,7 +93,7 @@ protected:
virtual void session_going_away ();
private:
- std::list<pthread_t> _thread_list;
+ std::list<AudioBackendNativeThread> _thread_list;
volatile bool _quit_threads;
void reset_thread_list ();