| 12 | } |
| 13 | |
| 14 | std::streamsize CompressedFile::gcount() const { |
| 15 | /* mutex lock */ |
| 16 | std::lock_guard<std::mutex> lock(m_mutex); |
| 17 | |
| 18 | return m_file.gcount(); |
| 19 | } |
| 20 | |
| 21 | void CompressedFile::read(char * s, std::streamsize n) { |
| 22 | /* mutex lock */ |
no outgoing calls
no test coverage detected