summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/worker.h
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2017-09-16 15:44:48 +0200
committerRobin Gareus <robin@gareus.org>2017-09-16 16:37:29 +0200
commit7258c6334db4e8c895fc556ae1ed550f0c70ead1 (patch)
tree9a6015bcbef3036b674f70a2d5a5cb817bb2a524 /libs/ardour/ardour/worker.h
parentae0dcdc0c5d13483271065c360e378202d20170a (diff)
Namespace PBD::RingBuffer
class RingBuffer<> is a very generic name and should not pollute the global namespace.
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