]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Update MIPS bits/socket.h for mmsghdr and recvmmsg.
authorJoseph Myers <joseph@codesourcery.com>
Wed, 9 Dec 2009 16:51:18 +0000 (16:51 +0000)
committerJoseph Myers <joseph@codesourcery.com>
Wed, 9 Dec 2009 16:51:18 +0000 (16:51 +0000)
ChangeLog.mips
sysdeps/unix/sysv/linux/mips/bits/socket.h

index bbcb223766e8986c62589b5c76fc1d49faf1bd30..b3125f46d27b24c94b0c0af831a4f23f393ce172 100644 (file)
@@ -1,3 +1,8 @@
+2009-12-09  Joseph Myers  <joseph@codesourcery.com>
+
+       * sysdeps/unix/sysv/linux/mips/bits/socket.h: Define mmsghdr and
+       declare recvmmsg.
+
 2009-12-01  Joseph Myers  <joseph@codesourcery.com>
 
        * sysdeps/unix/sysv/linux/mips/mips64/n32/syscalls.list
index 58a04099d2fdff93d1b538a827787188441762ee..4899077a961c6503046ffadc15b32ba855cba3ff 100644 (file)
@@ -234,8 +234,8 @@ enum
 #define        MSG_MORE        MSG_MORE
 
     MSG_CMSG_CLOEXEC   = 0x40000000    /* Set close_on_exit for file
-                                           descriptor received through
-                                           SCM_RIGHTS.  */
+                                          descriptor received through
+                                          SCM_RIGHTS.  */
 #define MSG_CMSG_CLOEXEC MSG_CMSG_CLOEXEC
   };
 
@@ -256,6 +256,15 @@ struct msghdr
     int msg_flags;             /* Flags on received message.  */
   };
 
+#ifdef __USE_GNU
+/* For `recvmmsg'.  */
+struct mmsghdr
+  {
+    struct msghdr msg_hdr;     /* Actual message header.  */
+    unsigned int msg_len;      /* Number of received bytes for the entry.  */
+  };
+#endif
+
 /* Structure used for storage of ancillary data object information.  */
 struct cmsghdr
   {
@@ -397,4 +406,18 @@ struct linger
     int l_linger;              /* Time to linger.  */
   };
 
+
+__BEGIN_DECLS
+
+/* Receive a message as described by MESSAGE from socket FD.
+   Returns the number of bytes read or -1 for errors.
+
+   This function is a cancellation point and therefore not marked with
+   __THROW.  */
+extern int recvmmsg (int __fd, struct mmsghdr *__vmessages,
+                    unsigned int __vlen, int __flags,
+                    __const struct timespec *__tmo);
+
+__END_DECLS
+
 #endif /* bits/socket.h */