diff --git a/container/SharedRingBuffer.h b/container/SharedRingBuffer.h index 102cc6be8..0b5be0521 100644 --- a/container/SharedRingBuffer.h +++ b/container/SharedRingBuffer.h @@ -53,6 +53,11 @@ public: */ virtual ReturnValue_t unlockRingBufferMutex(); + /** + * The mutex handle can be accessed directly, for example to perform + * the lock with the #MutexHelper for a RAII compliant lock operation. + * @return + */ MutexIF* getMutexHandle() const; private: MutexIF* mutex = nullptr;