| 30 | } |
| 31 | |
| 32 | Thread::Thread(const std::string_view name_) : name{name_} { |
| 33 | // TODO: make this configurable |
| 34 | messages.resize(256); |
| 35 | } |
| 36 | |
| 37 | void Thread::Log(const Message& msg) { |
| 38 | std::unique_lock lock(msg_mutex); |
nothing calls this directly
no outgoing calls
no test coverage detected