diff options
Diffstat (limited to 'src/MusicBuffer.hxx')
-rw-r--r-- | src/MusicBuffer.hxx | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/MusicBuffer.hxx b/src/MusicBuffer.hxx index fe14fe300..d2b23d43a 100644 --- a/src/MusicBuffer.hxx +++ b/src/MusicBuffer.hxx @@ -43,6 +43,17 @@ public: */ MusicBuffer(unsigned num_chunks); +#ifndef NDEBUG + /** + * Check whether the buffer is empty. This call is not + * protected with the mutex, and may only be used while this + * object is inaccessible to other threads. + */ + bool IsEmptyUnsafe() const { + return buffer.IsEmpty(); + } +#endif + /** * Returns the total number of reserved chunks in this buffer. This * is the same value which was passed to the constructor |