GNU C library specific macro (TEMP_FAILURE_RETRY) used in simple/msg_epoll.c
arjenve opened this issue · comments
Arjen van Elteren commented
In the file simple/msg_epoll.c a GNU C specific macro is used: TEMP_FAILURE_RETRY.
This macro does not work for other C libraries (for example muscl).
As it is only used in 2 lines could it be possibly replaced by a while loop and a check for EINTR?
Sean Hefty commented
I have no objection to a change. Are you able to submit a patch, so we can test muscl? If not, I'll try to do this.