Browse Source

* Add MSG_NOSIGNAL and MSG_WAITFORONE. Fixes issue #41073

Michaël Van Canneyt 7 months ago
parent
commit
d169225b8e
1 changed files with 2 additions and 0 deletions
  1. 2 0
      packages/rtl-extra/src/solaris/unxsockh.inc

+ 2 - 0
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;