| 305 | } |
| 306 | |
| 307 | inline int |
| 308 | UnixSocket::shutdown(int how) |
| 309 | { |
| 310 | int res; |
| 311 | do { |
| 312 | if (unlikely((res = ::shutdown(this->fd, how)) < 0)) { |
| 313 | res = -errno; |
| 314 | } |
| 315 | } while (res == -EINTR); |
| 316 | return res; |
| 317 | } |
| 318 | |
| 319 | inline bool |
| 320 | transient_error() |
nothing calls this directly
no test coverage detected