| 758 | } |
| 759 | |
| 760 | void TServerSocket::interruptChildren() { |
| 761 | concurrency::Guard g(rwMutex_); |
| 762 | if (childInterruptSockWriter_ != THRIFT_INVALID_SOCKET) { |
| 763 | notify(childInterruptSockWriter_); |
| 764 | } |
| 765 | } |
| 766 | |
| 767 | void TServerSocket::close() { |
| 768 | concurrency::Guard g(rwMutex_); |
no outgoing calls