| 239 | } |
| 240 | |
| 241 | GenericResponseSentHandler responseSent(const dap::TypeInfo* typeinfo) { |
| 242 | std::unique_lock<std::mutex> lock(responseSentMutex); |
| 243 | auto it = responseSentMap.find(typeinfo); |
| 244 | return (it != responseSentMap.end()) ? it->second |
| 245 | : decltype(it->second){}; |
| 246 | } |
| 247 | |
| 248 | void put(const dap::TypeInfo* typeinfo, |
| 249 | const GenericResponseSentHandler& handler) { |
no test coverage detected