| 19 | } |
| 20 | |
| 21 | void RingBuffer::InsertValue(RingBuffer::SizeType tv, int num) |
| 22 | { |
| 23 | std::unique_lock<std::mutex> lock(m_Mutex); |
| 24 | |
| 25 | InsertValueUnlocked(tv, num); |
| 26 | } |
| 27 | |
| 28 | void RingBuffer::InsertValueUnlocked(RingBuffer::SizeType tv, int num) |
| 29 | { |
no outgoing calls
no test coverage detected