See subject and patch

MSG_NOSIGNAL is not available on many Posix OSes.  Where it isn't
defined, we set it to 0 (and probably need to turn off or handle
SIGPIPEs).

Regards
-steve
Index: exec/totemnet.c
===================================================================
--- exec/totemnet.c	(revision 2215)
+++ exec/totemnet.c	(working copy)
@@ -74,6 +74,10 @@
 #include <prerror.h>
 #endif
 
+#ifndef MSG_NOSIGNAL
+#define MSG_NOSIGNAL 0
+#endif
+
 #define MCAST_SOCKET_BUFFER_SIZE (TRANSMITS_ALLOWED * FRAME_SIZE_MAX)
 #define NETIF_STATE_REPORT_UP		1
 #define NETIF_STATE_REPORT_DOWN		2
_______________________________________________
Openais mailing list
[email protected]
https://lists.linux-foundation.org/mailman/listinfo/openais

Reply via email to