On Fri, Aug 18, 2017 at 8:16 AM, Dave Watson <[email protected]> wrote:
> and also handle EINTR > + int bytes = read (validate_pipe[0], &buf, 1); > + if (bytes >= 0 || errno == EAGAIN || errno == EWOULDBLOCK) On Linux: #define EWOULDBLOCK EAGAIN /* Operation would block */ Did you mean errno == EINTR above? -- Paul Pluzhnikov _______________________________________________ Libunwind-devel mailing list [email protected] https://lists.nongnu.org/mailman/listinfo/libunwind-devel
