| 80 | } |
| 81 | |
| 82 | void CCppNetImpl::Dealloc() { |
| 83 | for (auto iter = _actions_map.begin(); iter != _actions_map.end(); ++iter) { |
| 84 | iter->second->Dealloc(); |
| 85 | } |
| 86 | #ifndef __linux__ |
| 87 | DeallocSocket(); |
| 88 | #endif // __linux__ |
| 89 | } |
| 90 | |
| 91 | void CCppNetImpl::Join() { |
| 92 | for (size_t i = 0; i < _thread_vec.size(); ++i) { |
nothing calls this directly
no test coverage detected