From d169225b8e9f0468cbe563997e7b1a7885865609 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Van=20Canneyt?= Date: Wed, 25 Dec 2024 16:34:09 +0100 Subject: [PATCH] * Add MSG_NOSIGNAL and MSG_WAITFORONE. Fixes issue #41073 --- packages/rtl-extra/src/solaris/unxsockh.inc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/rtl-extra/src/solaris/unxsockh.inc b/packages/rtl-extra/src/solaris/unxsockh.inc index bc811749a2..cd46026223 100644 --- a/packages/rtl-extra/src/solaris/unxsockh.inc +++ b/packages/rtl-extra/src/solaris/unxsockh.inc @@ -164,6 +164,8 @@ const MSG_TRUNC = $0020; MSG_WAITALL = $0040; { Wait for a full request } MSG_DONTWAIT = $0080; { Non-blocking I/O } + MSG_NOSIGNAL = $0200; { Solaris 11.4 : Don't generate SIGPIPE } + MSG_WAITFORONE = $0400; { Solaris 11.4 : recvmmsg() control flag } MSG_NOTIFICATION = $0100; { Notification, not data } MSG_XPG4_2 = $8000; { Private: XPG4.2 flag } MSG_MAXIOVLEN = 16;