Patch Set 4: Code-Review+2
(1 comment)
https://gerrit.osmocom.org/#/c/74/4/src/stats.c File src/stats.c:
Line 357: #ifdef MSG_NOSIGNAL I don't like #ifdefs in code too much. I will let this one in but in general maybe having a
#ifdef __APPLE__ #define MSG_NOSIGNAL 0 #endif
at the top is a better idea? 0 | .. will result in a working bitmask and the problem of SIGPIPE might still be the case not that I think we will hit it here.