| 225 | } |
| 226 | |
| 227 | void IOLoop :: RemoveTimer(uint32_t & iTimerID) |
| 228 | { |
| 229 | auto it = m_mapTimerIDExist.find(iTimerID); |
| 230 | if (it != end(m_mapTimerIDExist)) |
| 231 | { |
| 232 | m_mapTimerIDExist.erase(it); |
| 233 | } |
| 234 | |
| 235 | iTimerID = 0; |
| 236 | } |
| 237 | |
| 238 | void IOLoop :: DealwithTimeoutOne(const uint32_t iTimerID, const int iType) |
| 239 | { |
nothing calls this directly
no outgoing calls
no test coverage detected