| 855 | int Server::IncrMonitorClientNum() { return monitor_clients_.fetch_add(1, std::memory_order_relaxed); } |
| 856 | |
| 857 | int Server::DecrMonitorClientNum() { return monitor_clients_.fetch_sub(1, std::memory_order_relaxed); } |
| 858 | |
| 859 | int Server::IncrBlockedClientNum() { return blocked_clients_.fetch_add(1, std::memory_order_relaxed); } |
| 860 |
no outgoing calls
no test coverage detected