* @brief Releases the scan-buffer pin so the lock quota returns before the buffer is freed. */
| 62 | * @brief Releases the scan-buffer pin so the lock quota returns before the buffer is freed. |
| 63 | */ |
| 64 | IO::FrameReader::~FrameReader() |
| 65 | { |
| 66 | if (m_bufferPinned) |
| 67 | Platform::AppPlatform::unlockMemoryResident(m_circularBuffer.storage(), |
| 68 | static_cast<size_t>(m_circularBuffer.capacity())); |
| 69 | } |
| 70 | |
| 71 | //-------------------------------------------------------------------------------------------------- |
| 72 | // Data entry point |
nothing calls this directly
no test coverage detected