summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/worker.h
diff options
context:
space:
mode:
Diffstat (limited to 'libs/ardour/ardour/worker.h')
-rw-r--r--libs/ardour/ardour/worker.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/libs/ardour/ardour/worker.h b/libs/ardour/ardour/worker.h
index 6e1a7c91f1..cc60636622 100644
--- a/libs/ardour/ardour/worker.h
+++ b/libs/ardour/ardour/worker.h
@@ -102,16 +102,16 @@ private:
@param rb the ringbuffer to check
@return true if the message is complete, false otherwise
*/
- bool verify_message_completeness(RingBuffer<uint8_t>* rb);
-
- Workee* _workee;
- RingBuffer<uint8_t>* _requests;
- RingBuffer<uint8_t>* _responses;
- uint8_t* _response;
- PBD::Semaphore _sem;
- Glib::Threads::Thread* _thread;
- bool _exit;
- bool _synchronous;
+ bool verify_message_completeness(PBD::RingBuffer<uint8_t>* rb);
+
+ Workee* _workee;
+ PBD::RingBuffer<uint8_t>* _requests;
+ PBD::RingBuffer<uint8_t>* _responses;
+ uint8_t* _response;
+ PBD::Semaphore _sem;
+ Glib::Threads::Thread* _thread;
+ bool _exit;
+ bool _synchronous;
};
} // namespace ARDOUR