| 497 | } |
| 498 | |
| 499 | Socket::~Socket() { |
| 500 | pthread_mutex_destroy(&_id_wait_list_mutex); |
| 501 | bthread::butex_destroy(_epollout_butex); |
| 502 | } |
| 503 | |
| 504 | void Socket::ReturnSuccessfulWriteRequest(Socket::WriteRequest* p) { |
| 505 | DCHECK(p->data.empty()); |
nothing calls this directly
no test coverage detected