| 91 | |
| 92 | template<typename T> |
| 93 | uint32_t ObjectQueue<T>::tellp() const { |
| 94 | /* mutex lock */ |
| 95 | std::lock_guard<std::mutex> lock(m_mutex); |
| 96 | |
| 97 | return m_tellp; |
| 98 | } |
| 99 | |
| 100 | template<typename T> |
| 101 | bool ObjectQueue<T>::good() const { |
no outgoing calls
no test coverage detected