| 55 | } |
| 56 | |
| 57 | int RingBuffer::UpdateAndGetValues(RingBuffer::SizeType tv, RingBuffer::SizeType span) |
| 58 | { |
| 59 | std::unique_lock<std::mutex> lock(m_Mutex); |
| 60 | |
| 61 | return UpdateAndGetValuesUnlocked(tv, span); |
| 62 | } |
| 63 | |
| 64 | int RingBuffer::UpdateAndGetValuesUnlocked(RingBuffer::SizeType tv, RingBuffer::SizeType span) |
| 65 | { |
no outgoing calls
no test coverage detected