summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/interthread_info.h
diff options
context:
space:
mode:
Diffstat (limited to 'libs/ardour/ardour/interthread_info.h')
-rw-r--r--libs/ardour/ardour/interthread_info.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/libs/ardour/ardour/interthread_info.h b/libs/ardour/ardour/interthread_info.h
index 908276067a..01cacf437c 100644
--- a/libs/ardour/ardour/interthread_info.h
+++ b/libs/ardour/ardour/interthread_info.h
@@ -27,14 +27,15 @@
namespace ARDOUR {
- struct InterThreadInfo {
+ class InterThreadInfo {
+ public:
InterThreadInfo () : done (false), cancel (false), progress (0), thread (0) {}
volatile bool done;
volatile bool cancel;
volatile float progress;
pthread_t thread;
- ProcessThread process_thread;
+ ProcessThread process_thread;
};
} // namespace