ufds[0].events = POLLOUT;
rc = poll(ufds, 1, config.metadata_pipe_timeout);
if (rc < 0) {
- debug(1, "error waiting for pipe to become ready for writing...");
+ debug(1, "non-blocking write error waiting for pipe to become ready for writing...");
} else if (rc == 0) {
- warn("timeout waiting for pipe to become ready for writing");
+ warn("non-blocking write timeout waiting for pipe to become ready for writing");
rc = -2;
} else { //rc > 0, implying it might be ready
size_t bytes_written = write(fd,ibuf,bytes_remaining);
if (bytes_written==-1) {
+ if (errno==EINTR)
+ debug(1,"non-blocking write interrupted by a signal interrupt");
if (!((errno == EAGAIN) || (errno == EWOULDBLOCK)))
rc = -1;
} else {