/*
- * $Id: comm.cc,v 1.245 1998/04/08 17:22:12 wessels Exp $
+ * $Id: comm.cc,v 1.246 1998/04/08 17:24:49 wessels Exp $
*
* DEBUG: section 5 Socket Functions
* AUTHOR: Harvest Derived
Counter.select_loops++;
if (num >= 0)
break;
- if (errno == EINTR)
+ if (ignoreErrno(errno))
continue;
debug(5, 0) ("comm_poll: poll failure: %s\n", xstrerror());
assert(errno != EINVAL);
Counter.select_loops++;
if (num >= 0)
break;
- if (errno == EINTR)
+ if (ignoreErrno(errno))
break;
debug(50, 0) ("comm_select: select failure: %s\n",
xstrerror());