| 35 | } |
| 36 | |
| 37 | ConnectionDispatcher::~ConnectionDispatcher() { |
| 38 | if (socket_pair_fd_[0]) { |
| 39 | close(socket_pair_fd_[0]); |
| 40 | close(socket_pair_fd_[1]); |
| 41 | } |
| 42 | } |
| 43 | |
| 44 | int ConnectionDispatcher::run() { |
| 45 | co_enable_hook_sys(); |
nothing calls this directly
no outgoing calls
no test coverage detected