additional comment

This commit is contained in:
Robin Müller 2020-08-08 23:47:44 +02:00
parent f9ce1d9eb9
commit 5d09ae3221

View File

@ -53,6 +53,11 @@ public:
*/ */
virtual ReturnValue_t unlockRingBufferMutex(); 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; MutexIF* getMutexHandle() const;
private: private:
MutexIF* mutex = nullptr; MutexIF* mutex = nullptr;