| 36 | namespace io { |
| 37 | |
| 38 | DescriptorStream::DescriptorStream(int fd) |
| 39 | : fd_(fd), |
| 40 | logger_(logging::LoggerFactory<DescriptorStream>::getLogger()) { |
| 41 | } |
| 42 | |
| 43 | void DescriptorStream::seek(uint64_t offset) { |
| 44 | std::lock_guard<std::recursive_mutex> lock(file_lock_); |
nothing calls this directly
no outgoing calls
no test coverage detected