Skip to content
Snippets Groups Projects
Commit 95b9dfe9 authored by Mark Grondona's avatar Mark Grondona
Browse files

o use a getsockopt() to get and clear error condition in io.c

   still needs work -- should we continue to use the socket
   or close it?
parent 36d3104c
No related branches found
No related tags found
No related merge requests found
......@@ -164,8 +164,12 @@ _io_thr_poll(void *job_arg)
unsigned short revents = fds[i].revents;
xassert(!(revents & POLLNVAL));
if (revents & POLLERR || revents & POLLHUP) {
error("poll error condition on fd %d",
fds[i].fd);
int err;
socklen_t size = sizeof(int);
getsockopt(fds[i].fd, SOL_SOCKET,
SO_ERROR, (void *)&err, &size);
error("poll error condition %d on fd %d",
err, fds[i].fd);
_shutdown_fd_poll(&map[i]);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment